TransformStream: hàm tạo TransformStream()
Baseline
Widely available
*
This feature is well established and works across many devices and browser versions. It’s been available across browsers since June 2022.
* Some parts of this feature may have varying levels of support.
Note: This feature is available in Web Workers.
Hàm tạo TransformStream() tạo một đối tượng TransformStream mới đại diện cho một cặp luồng: WritableStream đại diện cho bên có thể ghi và ReadableStream đại diện cho bên có thể đọc được.
Cú pháp
new TransformStream()
new TransformStream(transformer)
new TransformStream(transformer, writableStrategy)
new TransformStream(transformer, writableStrategy, readableStrategy)
Parameters
-
transformerOptional-
: An object representing the
transformer. If not supplied the resulting stream will be an identity transform stream which forwards all chunks written to its writable side to its readable side, without any changes.The transformer object can contain any of the following methods. In each method
controlleris an instance ofTransformStreamDefaultController.start(bộ điều khiển)-
Called when the
TransformStreamis constructed. It is typically used to enqueue chunks usingTransformStreamDefaultController.enqueue(). transform(chunk, bộ điều khiển)-
Called when a chunk written to the writable side is ready to be transformed, and performs the work of the transformation stream. It can return a promise to signal success or failure of the write operation. If no
transform()method is supplied, the identity transform is used, and the chunk will be enqueued with no changes. flush(bộ điều khiển)-
Called after all chunks written to the writable side have been successfully transformed, and the writable side is about to be closed.
-
-
writableStrategyOptional- : An object that optionally defines a queuing strategy for the stream. This takes two
parameters:
highWaterMark-
A non-negative integer. This defines the total number of chunks that can be contained in the internal queue before backpressure is applied.
size(chunk)-
A method containing a parameter
chunk. This indicates the size to use for each chunk, in bytes.
- : An object that optionally defines a queuing strategy for the stream. This takes two
parameters:
-
readableStrategy__MDN PH28__highWaterMark- : A non-negative integer. This defines the total number of chunks that can be contained in the internal queue before backpressure is applied.size(chunk)-
A method containing a parameter
chunk. This indicates the size to use for each chunk, in bytes.
Note:
You could define your own custom
readableStrategy or writableStrategy, or use an instance of
ByteLengthQueuingStrategy or CountQueuingStrategy
for the object values.
Examples
>Transforming text to uppercase
The following example transforms text to uppercase chunk by chunk. This example is from Streams—The Definitive Guide, which has a number of examples of different types of streams.
function upperCaseStream() {
return new TransformStream({
transform(chunk, controller) {
controller.enqueue(chunk.toUpperCase());
},
});
}
function appendToDOMStream(el) {
return new WritableStream({
write(chunk) {
el.append(chunk);
},
});
}
fetch("./lorem-ipsum.txt").then((response) =>
response.body
.pipeThrough(new TextDecoderStream())
.pipeThrough(upperCaseStream())
.pipeTo(appendToDOMStream(document.body)),
);
Creating an identity transform stream
If no transformer argument is supplied then the result will be an identity transform stream which forwards all chunks written to the writable side to the readable side with no changes. In the following example an identity transform stream is used to add buffering to a pipe.
const writableStrategy = new ByteLengthQueuingStrategy({
highWaterMark: 1024 * 1024,
});
readableStream
.pipeThrough(new TransformStream(undefined, writableStrategy))
.pipeTo(writableStream);
Thông số kỹ thuật
| Specification |
|---|
| Streams> # ref-for-ts-constructor④> |