ReadableStreamBYOBReader.cancel()
Draft: This page is not complete.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The cancel()
method of the ReadableStreamBYOBReader
interface returns a Promise
that resolves when the stream is canceled. Calling this method signals a loss of interest in the stream by a consumer.
Note: If the reader is active, the cancel()
method behaves the same as that for the associated stream (ReadableStream.cancel()
).
Syntax
var promise = readableStreamBYOBReader.cancel(reason);
Parameters
- reason Optional
-
A human-readable reason for the cancellation. The underlying source may or may not use it.
Return value
A Promise
, which fulfills with the value given in the reason
parameter.
Exceptions
- TypeError
-
The source object is not a
ReadableStreamBYOBReader
, or the stream has no owner.
Examples
TBD.
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 | |
cancel |
89 |
89 |
No
See bug 1604037.
|
No |
No |
No |
89 |
89 |
No |
No |
No |
15.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/ReadableStreamBYOBReader/cancel