Skip to main content
Module

std/node/stream.ts>Readable#resume

Deno standard library
Go to Latest
method Readable.prototype.resume
import { Readable } from "https://deno.land/std@0.147.0/node/stream.ts";

The readable.resume() method causes an explicitly paused Readable stream to resume emitting 'data' events, switching the stream into flowing mode.

The readable.resume() method can be used to fully consume the data from a stream without actually processing any of that data:

getReadableStreamSomehow()
  .resume()
  .on('end', () => {
    console.log('Reached the end, but did not read anything.');
  });

The readable.resume() method has no effect if there is a 'readable'event listener.