ReadableStreamDefaultReader.closed
The closed
read-only property of the ReadableStreamDefaultReader
interface returns a Promise
that fulfills when the stream closes or the reader's lock is released, or rejects if the stream throws an error. This property enables you to write code that responds to an end to the streaming process.
Syntax
var closed = readableStreamDefaultReader.closed;
Value
A Promise
.
Examples
In this snippet, a previously-created reader is queried to see if the stream has been closed. When it is closed, the promise fulfills and the message is logged to the console.
reader.closed.then(() => { console.log('reader closed'); })
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
closed |
78 |
79 |
65 |
No |
65 |
No |
78 |
78 |
65 |
56 |
No |
12.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/closed