A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/releaseLock below:

ReadableStreamDefaultReader: releaseLock() method - Web APIs

ReadableStreamDefaultReader: releaseLock() method

Baseline Widely available *

Note: This feature is available in Web Workers.

The releaseLock() method of the ReadableStreamDefaultReader interface releases the reader's lock on the stream.

If the associated stream is errored when the lock is released, the reader will appear errored in that same way subsequently; otherwise, the reader will appear closed.

If the reader's lock is released while it still has pending read requests then the promises returned by the reader's ReadableStreamDefaultReader.read() method are immediately rejected with a TypeError. Unread chunks remain in the stream's internal queue and can be read later by acquiring a new reader.

Syntax Parameters

None.

Return value

None (undefined).

Exceptions
TypeError

Thrown if the source object is not a ReadableStreamDefaultReader.

Examples
function fetchStream() {
  const reader = stream.getReader();

  // …

  reader.releaseLock();

  // …
}
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4