resume

abstract fun resume(): Readable

The readable.resume() method will cause a stream in paused mode to switch back into flowing mode. This will cause the stream to start emitting data events.

This method is primarily used in conjunction with the readable.pause() method to manage stream flow.

Return

The Readable stream.