aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/readablestreambyobreader/index.html
blob: 4ec50c0a4e1b6d0f8f4c6962338a1c687a8e8774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: ReadableStreamBYOBReader
slug: Web/API/ReadableStreamBYOBReader
tags:
  - API
  - Experimental
  - Fetch
  - Interface
  - ReadableStreamBYOBReader
  - Reference
  - Streams
translation_of: Web/API/ReadableStreamBYOBReader
---
<p>{{APIRef("Streams")}}{{SeeCompatTable}}</p>

<p><span class="seoSummary"><a href="/ja/docs/Web/API/Streams_API">Streams API</a><code>ReadableStreamBYOBReader</code> インターフェイスは、開発者が提供するストリームデータ(カスタムの {{domxref("ReadableStream.ReadableStream","ReadableStream()")}} コンストラクターなど)の読み取りに使用できる BYOB("bring your own buffer")リーダーを表します。</span></p>

<h2 id="Constructor" name="Constructor">コンストラクター</h2>

<dl>
 <dt>{{domxref("ReadableStreamBYOBReader.ReadableStreamBYOBReader", "ReadableStreamBYOBReader()")}}</dt>
 <dd><code>ReadableStreamBYOBReader</code> オブジェクトのインスタンスを作成して返します。</dd>
</dl>

<h2 id="Properties" name="Properties">プロパティ</h2>

<dl>
 <dt>{{domxref("ReadableStreamBYOBReader.closed")}} {{readonlyInline}}</dt>
 <dd>ストリーミングプロセスの終了に応答するコードを記述できます。 ストリームが閉じられた場合、またはリーダーのロックが解除された場合に満たす promise  を返します。 ストリームがエラーの場合は拒否します。</dd>
</dl>

<h2 id="Methods" name="Methods">メソッド</h2>

<dl>
 <dt>{{domxref("ReadableStreamBYOBReader.cancel()")}}</dt>
 <dd>ストリームをキャンセルし、コンシューマーがストリームに興味を失ったことを通知します。 提供された <code>reason</code> 引数は、基になるソースに与えられ、使用する場合もしない場合もあります。</dd>
 <dt>{{domxref("ReadableStreamBYOBReader.read()")}}</dt>
 <dd>ストリームの内部キュー内の次のチャンクへのアクセスを提供する promise を返します。</dd>
 <dt>{{domxref("ReadableStreamBYOBReader.releaseLock()")}}</dt>
 <dd>ストリームのリーダーのロックを解除します。</dd>
</dl>

<h2 id="Examples" name="Examples"></h2>

<p>未定。</p>

<h2 id="Specifications" name="Specifications">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様</th>
   <th scope="col">状態</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('Streams','#byob-reader-class','ReadableStreamBYOBReader')}}</td>
   <td>{{Spec2('Streams')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div>
<div class="hidden">
<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
</div>

<p>{{Compat("api.ReadableStreamBYOBReader")}}</p>
</div>