From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../error/index.html | 83 ++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 files/ja/web/api/writablestreamdefaultcontroller/error/index.html (limited to 'files/ja/web/api/writablestreamdefaultcontroller/error') diff --git a/files/ja/web/api/writablestreamdefaultcontroller/error/index.html b/files/ja/web/api/writablestreamdefaultcontroller/error/index.html new file mode 100644 index 0000000000..630dd5459a --- /dev/null +++ b/files/ja/web/api/writablestreamdefaultcontroller/error/index.html @@ -0,0 +1,83 @@ +--- +title: WritableStreamDefaultController.error() +slug: Web/API/WritableStreamDefaultController/error +tags: + - API + - Error + - Experimental + - Method + - Reference + - Streams + - WritableStreamDefaultController +translation_of: Web/API/WritableStreamDefaultController/error +--- +
{{draft}}{{SeeCompatTable}}{{APIRef("Streams")}}
+ +

{{domxref("WritableStreamDefaultController")}} インターフェイスの error() メソッドにより、関連するストリームとの今後のやり取りがエラーになります。

+ +

通常、基になるシンクのメソッドの1つから拒否された promise を返すだけで十分なため、このメソッドはほとんど使用されません。 ただし、基になるシンクとのやり取りの通常のライフサイクル外のイベントに応答して、ストリームを突然シャットダウンする場合に役立ちます。

+ +

構文

+ +
writableStreamDefaultController.error(e);
+ +

パラメーター

+ +
+
e
+
今後のやり取りを失敗させたいエラーを表す {{domxref("DOMString")}}。
+
+ +

戻り値

+ +

undefined

+ +

例外

+ +
+
TypeError
+
エラーにしようとしているストリームは {{domxref("WritableStream")}} ではありません。
+
+ +

+ +
const writableStream = new WritableStream({
+  start(controller) {
+    // コントローラーで何かをする
+
+    // 必要に応じてストリームをエラーにする
+    controller.error('My error is broken');
+  },
+  write(chunk, controller) {
+    ...
+  },
+  close(controller) {
+    ...
+  },
+  abort(err) {
+    ...
+  }
+});
+ +

仕様

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName("Streams","#ws-default-controller-error","error()")}}{{Spec2('Streams')}}初期定義
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.WritableStreamDefaultController.error")}}

-- cgit v1.2.3-54-g00ecf