The ReadableStreamDefaultReader()
constructor creates and returns a ReadableStreamDefaultReader
object instance.
Note: You generally wouldn't use this constructor manually; instead, you'd use the ReadableStream.getReader()
method.
The ReadableStreamDefaultReader()
constructor creates and returns a ReadableStreamDefaultReader
object instance.
Note: You generally wouldn't use this constructor manually; instead, you'd use the ReadableStream.getReader()
method.
js
new ReadableStreamDefaultReader(stream)
stream
The ReadableStream
to be read.
An instance of the ReadableStreamDefaultReader
object.
TypeError
Thrown if the supplied stream
parameter is not a ReadableStream
, or it is already locked for reading by another reader.
In the following simple example, a previously-created custom ReadableStream
is read using a ReadableStreamDefaultReader
created using getReader()
. (see our Simple random stream example for the full code). Each chunk is read sequentially and output to the UI, until the stream has finished being read, at which point we return out of the recursive function and print the entire stream to another part of the UI.
js
function fetchStream() {
const reader = stream.getReader();
let charsReceived = 0;
// read() returns a promise that resolves
// when a value has been received
reader.read().then(function processText({ done, value }) {
// Result objects contain two properties:
// done - true if the stream has already given you all its data.
// value - some data. Always undefined when done is true.
if (done) {
console.log("Stream complete");
para.textContent = result;
return;
}
// value for fetch streams is a Uint8Array
charsReceived += value.length;
const chunk = value;
let listItem = document.createElement("li");
listItem.textContent = `Received ${charsReceived} characters so far. Current chunk = ${chunk}`;
list2.appendChild(listItem);
result += chunk;
// Read some more, and call this function again
return reader.read().then(processText);
});
}
Specification |
---|
Streams Standard # ref-for-default-reader-constructor① |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ReadableStreamDefaultReader |
78 | 79 | 100 | No | 65 | No | 78 | 78 | 100 | 56 | No | 12.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/ReadableStreamDefaultReader