Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TransformStream cleanup using "Transformer.cancel" #1283

Merged
merged 15 commits into from
Sep 30, 2023
Prev Previous commit
Next Next commit
fix
  • Loading branch information
lucacasonato committed Jun 12, 2023
commit 2e503c6b94c5fbf1010cb4b545da05104f0ef29c
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5591,9 +5591,9 @@ callback TransformerCancelCallback = Promise<undefined> (any reason);
</dl>

The <code>controller</code> object passed to {{Transformer/start|start()}},
{{Transformer/transform|transform()}}, {{Transformer/flush|flush()}}, and
{{Transformer/cancel|cancel()}} is an instance of {{TransformStreamDefaultController}}, and has the
ability to enqueue [=chunks=] to the [=readable side=], or to terminate or error the stream.
{{Transformer/transform|transform()}}, and {{Transformer/flush|flush()}} is an instance of
{{TransformStreamDefaultController}}, and has the ability to enqueue [=chunks=] to the
[=readable side=], or to terminate or error the stream.

<h4 id="ts-prototype">Constructor and properties</h4>

Expand Down
Loading