summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/streams/readable_stream_byob_reader.idl
blob: 66b10131904e4d2597ce320f783592a048eb24d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://streams.spec.whatwg.org/#byob-reader-class-definition
[
    Exposed=(Window,Worker,Worklet)
] interface ReadableStreamBYOBReader {
    [CallWith=ScriptState, RaisesException] constructor(ReadableStream stream);

    [CallWith=ScriptState, RaisesException] Promise<ReadableStreamBYOBReadResult> read(ArrayBufferView view);
    [CallWith=ScriptState, RaisesException] void releaseLock();

    // includes ReadableStreamGenericReader
    [CallWith=ScriptState] readonly attribute Promise<void> closed;
    [CallWith=ScriptState, RaisesException] Promise<void> cancel(optional any reason);
};