ReadWriteStream

Properties

Link copied to clipboard
abstract var readable: Boolean
Link copied to clipboard
abstract var writable: Boolean

Functions

Link copied to clipboard
abstract fun end(cb: () -> Unit = definedExternally)
abstract fun end(data: Uint8Array, cb: () -> Unit = definedExternally)
abstract fun end(data: String, cb: () -> Unit = definedExternally)
abstract fun end(str: String, encoding: BufferEncoding = definedExternally, cb: () -> Unit = definedExternally)
Link copied to clipboard

Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbols.

Link copied to clipboard

Returns the current max listener value for the EventEmitter which is either set by emitter.setMaxListeners(n) or defaults to {@link defaultMaxListeners}.

Link copied to clipboard
abstract fun isPaused(): Boolean
Link copied to clipboard
abstract fun pause()
Link copied to clipboard
abstract fun <T : WritableStream> pipe(destination: T, options: ReadableStreamPipeOptions = definedExternally): T
Link copied to clipboard
abstract fun read(size: Number = definedExternally): Any
Link copied to clipboard
abstract fun resume()
Link copied to clipboard
abstract fun setEncoding(encoding: BufferEncoding)
Link copied to clipboard

By default EventEmitters will print a warning if more than 10 listeners are added for a particular event. This is a useful default that helps finding memory leaks. The emitter.setMaxListeners() method allows the limit to be modified for this specific EventEmitter instance. The value can be set to Infinity (or 0) to indicate an unlimited number of listeners.

Link copied to clipboard
abstract fun unpipe(destination: WritableStream = definedExternally)
Link copied to clipboard
abstract fun unshift(chunk: Uint8Array, encoding: BufferEncoding = definedExternally)
abstract fun unshift(chunk: String, encoding: BufferEncoding = definedExternally)
Link copied to clipboard
abstract fun wrap(stream: ReadableStream)
Link copied to clipboard
abstract fun write(buffer: Uint8Array, cb: (JsError?) -> Unit = definedExternally): Boolean
abstract fun write(buffer: String, cb: (JsError?) -> Unit = definedExternally): Boolean
abstract fun write(str: String, encoding: BufferEncoding = definedExternally, cb: (JsError?) -> Unit = definedExternally): Boolean