Menu
Choose a product
Viewing: v1.7.x (latest)
Find another version
Scroll for more
Open source
cancel(reason)
The cancel() method of the
ReadableStream interface returns a Promise that resolves when the stream is canceled.
Cancel is used when you’ve completely finished with the stream and don’t need any more data from it, even if chunks are enqueued waiting to be read. That data is lost after cancel is called, and the stream is not readable any more. To close the stream without getting rid of enqueued chunks, use
ReadableStreamDefaultController.close().
Arguments
| Name | Type | Description |
|---|---|---|
| reason | any | An optional human-readable value that represents the reason for canceling the stream. |
Return value
A promise that resolves with the value undefined when the stream is canceled.
Exceptions
| Exception | Description |
|---|---|
| TypeError | Thrown the stream is locked to a reader. |
Example
JavaScript
JavaScript
import { ReadableStream } from 'k6/experimental/streams';
import { setTimeout } from 'k6/timers';
export default async function () {
// Define a number stream that emits numbers from 1 to 10 every second
const stream = numbersStream();
const reader = stream.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
if (value === 8) {
// Cancel the stream when the number is 8, any enqueued chunks are lost
await reader.cancel('cancelling the stream');
break;
}
}
}
function numbersStream() {
let currentNumber = 0;
return new ReadableStream({
start(controller) {
const fn = () => {
if (currentNumber < 10) {
controller.enqueue(++currentNumber);
setTimeout(fn, 1000);
return;
}
controller.close();
};
setTimeout(fn, 1000);
},
});
}Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.