File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -679,6 +679,34 @@ <h2><dfn>readable</dfn> attribute</h2>
679
679
with its length or to wait a defined length of time before transmitting
680
680
the next message. Implementing a {{TransformStream}} for these types of
681
681
message boundaries is left as an exercise for the reader.
682
+
683
+ < p >
684
+ While the {{ReadableStreamDefaultReader/read()}} method is asynchronous
685
+ and does not block execution, in code using async/await syntax it can
686
+ seem as if it does. In this situation it may be helpful to implement a
687
+ timeout which will allow the code to continue execution if no data is
688
+ received for a period of time. The example below uses the
689
+ {{ReadableStreamDefaultReader/releaseLock()}} method to interrupt a call
690
+ to {{ReadableStreamDefaultReader/read()}} after a timer expires. This
691
+ will not close the stream and so any data received after the timeout can
692
+ still be read later after calling {{ReadableStream/getReader()}} again.
693
+
694
+ < pre class ="js ">
695
+ async function readWithTimeout(port, timeout) {
696
+ const reader = port.readable.getReader();
697
+ const timer = setTimeout(() => {
698
+ reader.releaseLock();
699
+ }, timeout);
700
+ const result = await reader.read();
701
+ clearTimeout(timer);
702
+ reader.releaseLock();
703
+ return result;
704
+ }
705
+ </ pre >
706
+
707
+ This feature of {{ReadableStreamDefaultReader/releaseLock()}} was added
708
+ in < a href ="https://github.com/whatwg/streams/pull/1168 "> whatwg/streams#1168</ a >
709
+ and has only recently been implemented by browsers.
682
710
</ aside >
683
711
684
712
The {{SerialPort/readable}} getter steps are:
You can’t perform that action at this time.
0 commit comments