aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/readablestreambyobreader/releaselock/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/readablestreambyobreader/releaselock/index.html')
-rw-r--r--files/ja/web/api/readablestreambyobreader/releaselock/index.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/files/ja/web/api/readablestreambyobreader/releaselock/index.html b/files/ja/web/api/readablestreambyobreader/releaselock/index.html
new file mode 100644
index 0000000000..2ab5569d2f
--- /dev/null
+++ b/files/ja/web/api/readablestreambyobreader/releaselock/index.html
@@ -0,0 +1,68 @@
+---
+title: ReadableStreamBYOBReader.releaseLock()
+slug: Web/API/ReadableStreamBYOBReader/releaseLock
+tags:
+ - API
+ - Experimental
+ - Method
+ - ReadableStreamBYOBReader
+ - Reference
+ - Streams
+ - releaseLock
+translation_of: Web/API/ReadableStreamBYOBReader/releaseLock
+---
+<div>{{draft}}{{SeeCompatTable}}{{APIRef("Streams")}}</div>
+
+<p class="summary"><span class="seoSummary">{{domxref("ReadableStreamBYOBReader")}} インターフェイスの <strong><code>releaseLock()</code></strong> メソッドは、ストリーム上のリーダーのロックを解除します。 ロックを解除すると、リーダーはアクティブではなくなります。</span></p>
+
+<p>ロックを解除したときに関連するストリームにエラーが発生した場合、リーダーはその後同様にエラーが発生したようになります。 そうでない場合、リーダーは閉じた状態になります。</p>
+
+<p>リーダーのロックは、保留中の読み取り要求が残っている間、つまり、リーダーの {{domxref("ReadableStreamBYOBReader.read()")}} メソッドによって返された promise が終了していない場合、解除できません。 これにより、<code>TypeError</code> がスローされます。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>readableStreamBYOBReader</em>.releaseLock();</pre>
+
+<h3 id="Parameters" name="Parameters">パラメーター</h3>
+
+<p>なし。</p>
+
+<h3 id="Return_value" name="Return_value">戻り値</h3>
+
+<p><code>undefined</code>。</p>
+
+<h3 id="Exceptions" name="Exceptions">例外</h3>
+
+<dl>
+ <dt>TypeError</dt>
+ <dd>ソースオブジェクトが <code>ReadableStreamBYOBReader</code> でないか、読み取り要求が保留中です。</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-release-lock","releaseLock()")}}</td>
+ <td>{{Spec2('Streams')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<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.releaseLock")}}</p>