Skip to content

Commit 3fe5fc5

Browse files
committed
Add example of using releaseLock() to implement a timeout
Fixes #122.
1 parent 8527faa commit 3fe5fc5

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

index.html

+28
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,34 @@ <h2><dfn>readable</dfn> attribute</h2>
679679
with its length or to wait a defined length of time before transmitting
680680
the next message. Implementing a {{TransformStream}} for these types of
681681
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.
682710
</aside>
683711

684712
The {{SerialPort/readable}} getter steps are:

0 commit comments

Comments
 (0)