The ReadableByteStreamController interface of the Streams API
a controller allowing control of a web.files.ReadableStream
's
and internal queue. Byte stream controllers are for byte streams.
The ReadableByteStreamController interface of the Streams API a controller allowing control of a `web.files.ReadableStream`'s and internal queue. Byte stream controllers are for byte streams.
(byob-request this)
Property.
[Draft] [Experimental]
The byobRequest getter property of the web.fetch.ReadableByteStreamController
returns the current BYOB pull request.
var request = readableByteStreamControllerInstance.byobRequest;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/byobRequest
Property. [Draft] [Experimental] The byobRequest getter property of the `web.fetch.ReadableByteStreamController` returns the current BYOB pull request. `var request = readableByteStreamControllerInstance.byobRequest;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/byobRequest`
(close this)
Method.
[Draft] [Experimental]
The close() method of the web.fetch.ReadableByteStreamController
closes the associated stream.
readableByteStreamControllerInstance.close();
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/close
Method. [Draft] [Experimental] The close() method of the `web.fetch.ReadableByteStreamController` closes the associated stream. `readableByteStreamControllerInstance.close();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/close`
(desired-size this)
Property.
[Draft] [Experimental]
The desiredSize getter property of the web.fetch.ReadableByteStreamController
returns the desired size required to fill the stream's internal
var desiredSize = readableByteStreamControllerInstance.desiredSize;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/desiredSize
Property. [Draft] [Experimental] The desiredSize getter property of the `web.fetch.ReadableByteStreamController` returns the desired size required to fill the stream's internal `var desiredSize = readableByteStreamControllerInstance.desiredSize;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/desiredSize`
(enqueue this chunk)
Method.
[Draft] [Experimental]
The enqueue() method of the web.fetch.ReadableByteStreamController
enqueues a given chunk in the associated stream.
readableByteStreamControllerInstance.enqueue(chunk);
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/enqueue
Method. [Draft] [Experimental] The enqueue() method of the `web.fetch.ReadableByteStreamController` enqueues a given chunk in the associated stream. `readableByteStreamControllerInstance.enqueue(chunk);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/enqueue`
(error this e)
Method.
[Draft] [Experimental]
The error() method of the web.fetch.ReadableByteStreamController
causes any future interactions with the associated stream to
readableByteStreamControllerInstance.error(e);
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/error
Method. [Draft] [Experimental] The error() method of the `web.fetch.ReadableByteStreamController` causes any future interactions with the associated stream to `readableByteStreamControllerInstance.error(e);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/error`
(set-byob-request! this val)
Property.
[Draft] [Experimental]
The byobRequest getter property of the web.fetch.ReadableByteStreamController
returns the current BYOB pull request.
var request = readableByteStreamControllerInstance.byobRequest;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/byobRequest
Property. [Draft] [Experimental] The byobRequest getter property of the `web.fetch.ReadableByteStreamController` returns the current BYOB pull request. `var request = readableByteStreamControllerInstance.byobRequest;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/byobRequest`
(set-desired-size! this val)
Property.
[Draft] [Experimental]
The desiredSize getter property of the web.fetch.ReadableByteStreamController
returns the desired size required to fill the stream's internal
var desiredSize = readableByteStreamControllerInstance.desiredSize;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/desiredSize
Property. [Draft] [Experimental] The desiredSize getter property of the `web.fetch.ReadableByteStreamController` returns the desired size required to fill the stream's internal `var desiredSize = readableByteStreamControllerInstance.desiredSize;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController/desiredSize`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close