aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/blob/stream/index.html
blob: 083f2f2b961373cabbfc36e03ca415403c0ff796 (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
---
title: Blob.stream()
slug: Web/API/Blob/stream
tags:
  - API
  - Blob
  - Change
  - Convert
  - File API
  - Method
  - ReadableStream
  - Reference
  - stream
translation_of: Web/API/Blob/stream
---
<p>{{APIRef("File API")}}</p>

<p><span class="seoSummary">{{domxref("Blob")}} インターフェイスの<code><strong>stream()</strong></code> メソッドは、{{domxref("ReadableStream")}} を返します。これは、読み取り時に、<code>Blob</code> に含まれるデータを返します。</span></p>

<h2 id="シンタックス">シンタックス</h2>

<pre class="syntaxbox notranslate">var <em>stream</em> = <em>blob</em>.stream();</pre>

<h3 id="パラメータ">パラメータ</h3>

<p>なし</p>

<h3 id="戻り値">戻り値</h3>

<p>読み込んだときに、<code>Blob</code> の内容を {{domxref("ReadableStream")}} で返します。</p>

<h2 id="使用上のメモ">使用上のメモ</h2>

<p><code>stream()</code> と返された {{domxref("ReadableStream")}} を使用すると、いくつかの興味深い機能を得ることができます。</p>

<ul>
 <li>返されたストリーム上で{{domxref("ReadableStream.getReader", "getReader()")}} を呼び出して、{{domxref("ReadableStreamDefaultReader")}} インターフェイスの{{domxref("ReadableStreamDefaultReader.read", "read()")}} メソッドのようなメソッドを使用して、Blob からデータを読み取るために使用するオブジェクトを取得します</li>
 <li>返されたストリームの {{domxref("ReadableStream.pipeTo", "pipeTo()")}} メソッドを呼び出して、Blob のデータを書き込み可能なストリームにパイプします</li>
 <li>返されたストリームの {{domxref("ReadableStream.tee", "tee()")}} メソッドを呼び出して、可読ストリームを <strong>tee</strong> します。これは、2つの新しい <code>ReadableStream</code> オブジェクトを含む配列を返し、それぞれが <code>Blob</code> の内容を返します</li>
 <li>返されたストリームの {{domxref("ReadableStream.pipeThrough", "pipeThrough()")}} メソッドを呼び出して、ストリームを {{domxref("TransformStream")}} またはその他の可読および書き込み可能なペアにパイプします</li>
</ul>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">ステータス</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName("File API", "#dom-blob-stream", "Blob.stream()")}}</td>
   <td>{{Spec2("File API")}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

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

<p>{{Compat("api.Blob.stream")}}</p>

<h2 id="あわせて参照">あわせて参照</h2>

<ul>
 <li>{{domxref("Body.body")}}</li>
 <li><a href="/ja/docs/Web/API/Streams_API">Streams API</a></li>
</ul>