WritableStreamDefaultWriter.releaseLock()
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The releaseLock()
method of the WritableStreamDefaultWriter
interface releases the writer's lock on the corresponding stream. After the lock is released, the writer is no longer active. If the associated stream is errored when the lock is released, the writer will appear errored in the same way from now on; otherwise, the writer will appear closed.
Syntax
writableStreamDefaultWritere.releaseLock()
Parameters
None.
Return value
undefined
.
Examples
const writableStream = new WritableStream({ write(chunk) { ... }, close() { ... }, abort(err) { ... } }, queuingStrategy); ... const writer = writableStream.getWriter(); ... // release writer's lock on the stream when desired writer.releaseLock();
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 | |
releaseLock |
59 |
16 |
No |
No |
46 |
14.1 |
59 |
59 |
No |
43 |
14.5 |
7.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/WritableStreamDefaultWriter/releaseLock