Closed
Bug 1734243
Opened 3 years ago
Closed 3 years ago
Implement ReadableStream.pipeThrough
Categories
(Core :: DOM: Streams, task, P3)
Core
DOM: Streams
Tracking
()
RESOLVED
FIXED
People
(Reporter: mgaudet, Assigned: saschanaz)
References
(Blocks 1 open bug, )
Details
Attachments
(4 files)
No description provided.
Blocks: dom-streams
Assignee | ||
Comment 1•3 years ago
|
||
Seems pipeThrough is a short wrapper on top of pipeTo, without direct dependency for TransformStream.
Depends on: 1734241
TransformStream is not a direct dependency, but it's meant to be used together. I think the only difficult thing for implementing pipeThrough is
Step 5. Set promise.[[PromiseIsHandled]] to true.
We have Promise::SetSettledPromiseIsHandled
, but I think in this case the promise actually isn't settled.
Assignee | ||
Comment 3•3 years ago
|
||
This sounds like a lower hanging fruit than the whole TransformStream...
Assignee: nobody → krosylight
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•3 years ago
|
||
Assignee | ||
Comment 5•3 years ago
|
||
Depends on D139505
Updated•3 years ago
|
Attachment #9265199 -
Attachment description: Bug 1734243 - Part 1: Add JS::SetAnyPromiseIsHandled r=mgaudet → Bug 1734243 - Part 1: Add JS::SetAnyPromiseIsHandled r=arai
Assignee | ||
Comment 6•3 years ago
|
||
Depends on D139506
Assignee | ||
Updated•3 years ago
|
Keywords: leave-open
Pushed by krosylight@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/d89c07e28e42
Part 1: Add JS::SetAnyPromiseIsHandled r=arai
Comment 8•3 years ago
|
||
bugherder |
Pushed by krosylight@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c5a25a5870f1
Part 2: Implement ReadableStream#pipeThrough r=mgaudet,evilpie,emilio
https://hg.mozilla.org/integration/autoland/rev/b4538bb5c349
Part 3: Use SetAnyPromiseIsHandled in ServiceWorkerScriptCache r=smaug
Assignee | ||
Comment 10•3 years ago
|
||
Comment 11•3 years ago
|
||
Pushed by smolnar@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/886bd2c17225
Part 4: Add missing AbortSignal header in PipeTo. CLOSED TREE
Comment 12•3 years ago
|
||
bugherder |
Assignee | ||
Updated•3 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•