ReadableStream.pipeThrough() - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The pipeThrough()
method of the ReadableStream
interface provides a chainable way of piping the current stream through a transform stream or any other writable/readable pair.
Piping a stream will generally lock it for the duration of the pipe, preventing other readers from locking it.
Syntax
var transformedStream = readableStream.pipeThrough(transformStream[, options]);
Parameters
- transformStream
- A
TransformStream
(or an object with the structure{writable, readable}
) consisting of a readable stream and a writable stream working together to transform some data from one form to another. Data writen to thewritable
stream can be read in some transformed state by thereadable
stream. For example, aTextDecoder
, has bytes written to it and strings read from it, while a video decoder has encoded bytes written to it and uncompressed video frames read from it. - options Optional
- The options that should be used when piping to the
writable
stream. Available options are:preventClose
: If this is set totrue
, the sourceReadableStream
closing will no longer cause the destinationWritableStream
to be closed. The method will return a fulfilled promise once this process completes, unless an error is encountered while closing the destination in which case it will be rejected with that error.preventAbort
: If this is set totrue
, errors in the sourceReadableStream
will no longer abort the destinationWritableStream
. The method will return a promise rejected with the source’s error, or with any error that occurs during aborting the destination.preventCancel
: If this is set totrue
, errors in the destinationWritableStream
will no longer cancel the sourceReadableStream
. In this case the method will return a promise rejected with the source’s error, or with any error that occurs during canceling the source. In addition, if the destination writable stream starts out closed or closing, the source readable stream will no longer be canceled. In this case the method will return a promise rejected with an error indicating piping to a closed stream failed, or with any error that occurs during canceling the source.signal
: If set to anAbortSignal
object, ongoing pipe operations can then be aborted via the correspondingAbortController
.
Return value
The readable
side of the transformStream
.
Exceptions
- TypeError
- The
writable
and/orreadable
property oftransformStream
are undefined.
Examples
In the following example (see Unpack chunks of a PNG for the full code running live, and png-transform-stream for the source code), an image is fetched and its body retrieved as a ReadableStream
. Next, we log the contents of the readable stream, use pipeThrough()
to send it to a new function that creates a gray-scaled version of the stream, then log the new stream's contents too.
// Fetch the original image
fetch('png-logo.png')
// Retrieve its body as ReadableStream
.then(response => response.body)
.then(rs => logReadableStream('Fetch Response Stream', rs))
// Create a gray-scaled PNG stream out of the original
.then(body => body.pipeThrough(new PNGTransformStream()))
.then(rs => logReadableStream('PNG Chunk Stream', rs))
Specifications
Specification | Status | Comment |
---|---|---|
Streams The definition of 'pipeThrough()' in that specification. | Living Standard | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论