ReadableStreamDefaultReader.cancel() - Web APIs 编辑
The cancel()
method of the ReadableStreamDefaultReader
interface cancels the stream, signaling a loss of interest in the stream by a consumer. The supplied reason argument will be given to the underlying source, which may or may not use it.
Cancel is used when you've completely finished with the stream and don't need any more data from it, even if there are chunks enqueued waiting to be read. That data is lost after cancel is called, and the stream is not readable any more. To read those chunks still and not completely get rid of the stream, you'd use ReadableStreamDefaultController.close()
.
cancel()
method behaves the same as that for the associated stream (ReadableStream.cancel()
).Syntax
var promise = readableStreamDefaultReader.cancel(reason);
Parameters
- reason Optional
- A
DOMString
providing a human-readable reason for the cancellation.
Return value
A Promise
, which fulfills with the value given in the reason
parameter.
Exceptions
- TypeError
- The source object is not a
ReadableStreamDefaultReader
, or the stream has no owner.
Examples
In the following simple example, a previously-created custom ReadableStream
is read using a ReadableStreamDefaultReader
created using getReader()
. (this code is based on our Simple random stream example). 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.
When the stream is done (if (done)
), we run reader.cancel()
to cancel the stream, signalling that we don't need to use it any more.
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");
reader.cancel();
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);
});
}
Specifications
Specification | Status | Comment |
---|---|---|
Streams The definition of 'cancel()' in that specification. | Living Standard | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论