WritableStreamDefaultWriter
The WritableStreamDefaultWriter
interface of the Streams API is the object returned by WritableStream.getWriter() and once created locks the writer to the WritableStream
ensuring that no other streams can write to the underlying sink.
Properties
Functions
Link copied to clipboard
The abort()
method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
Link copied to clipboard
The abort()
method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
Link copied to clipboard
The close()
method of the stream.
Link copied to clipboard
The releaseLock()
method of the corresponding stream.
Link copied to clipboard
The write()
method of the operation.