summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/streams/readable_stream_byob_reader.idl
blob: 2fdd984c2bb428cac150fbfb4011f58ef50f6f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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),
    RuntimeEnabled=ReadableByteStream
] 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);
};