LcovReporter

external class LcovReporter : Transform(source)

Constructors

Link copied to clipboard
constructor(opts: TransformOptions<*> = definedExternally)

Properties

Link copied to clipboard
open override val _construct: (callback: (<Error class: unknown class>?) -> Unit) -> Unit?
Link copied to clipboard
open val _writev: (chunks: Array<WritableWritevChunksItem>, callback: (<Error class: unknown class>?) -> Unit) -> Unit?
Link copied to clipboard

If false then the stream will automatically end the writable side when the readable side ends. Set initially by the allowHalfOpen constructor option, which defaults to true.

Link copied to clipboard
open override val closed: Boolean

Is true after 'close' has been emitted.

Link copied to clipboard
open override val closeEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val dataEvent: EventInstance<<Error class: unknown class><Any?>>
Link copied to clipboard
open override var destroyed: Boolean

Is true after readable.destroy() has been called.

Link copied to clipboard
open override val drainEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val endEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val errored: <Error class: unknown class>?

Returns error if the stream has been destroyed with an error.

Link copied to clipboard
open override val errorEvent: EventInstance<<Error class: unknown class><<Error class: unknown class>>>
Link copied to clipboard
open override val finishEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val pauseEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val pipeEvent: EventInstance<<Error class: unknown class><Readable>>
Link copied to clipboard
abstract var readable: Boolean
Link copied to clipboard

Returns whether the stream was destroyed or errored before emitting 'end'.

Link copied to clipboard

Returns whether 'data' has been emitted.

Link copied to clipboard

Getter for the property encoding of a given Readable stream. The encoding property can be set using the {@link setEncoding} method.

Link copied to clipboard

Becomes true when 'end' event is emitted.

Link copied to clipboard
open override val readableEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard

This property reflects the current state of a Readable stream as described in the Three states section.

Link copied to clipboard

Returns the value of highWaterMark passed when creating this Readable.

Link copied to clipboard

This property contains the number of bytes (or objects) in the queue ready to be read. The value provides introspection data regarding the status of the highWaterMark.

Link copied to clipboard

Getter for the property objectMode of a given Readable stream.

Link copied to clipboard

Is true if it is safe to call writable.write(), which means the stream has not been destroyed, errored, or ended.

Link copied to clipboard
open override val resumeEvent: EventInstance<<Error class: unknown class>>
Link copied to clipboard
open override val unpipeEvent: EventInstance<<Error class: unknown class><Readable>>
Link copied to clipboard
abstract var writable: Boolean
Link copied to clipboard

Number of times writable.uncork() needs to be called in order to fully uncork the stream.

Link copied to clipboard

Is true after writable.end() has been called. This property does not indicate whether the data has been flushed, for this use writable.writableFinished instead.

Link copied to clipboard

Is set to true immediately before the 'finish' event is emitted.

Link copied to clipboard

Return the value of highWaterMark passed when creating this Writable.

Link copied to clipboard

This property contains the number of bytes (or objects) in the queue ready to be written. The value provides introspection data regarding the status of the highWaterMark.

Link copied to clipboard

Is true if the stream's buffer has been full and stream will emit 'drain'.

Link copied to clipboard

Getter for the property objectMode of a given Writable stream.

Functions

Link copied to clipboard
open override fun _destroy(error: <Error class: unknown class>?, callback: (<Error class: unknown class>?) -> Unit)
Link copied to clipboard
open fun _final(callback: (<Error class: unknown class>?) -> Unit)
Link copied to clipboard
fun _flush(callback: TransformCallback)
Link copied to clipboard
fun _read(size: Number)
Link copied to clipboard
fun _transform(chunk: Any?, encoding: BufferEncoding, callback: TransformCallback)
Link copied to clipboard
open fun _write(chunk: Any?, encoding: BufferEncoding, callback: (<Error class: unknown class>?) -> Unit)
Link copied to clipboard
fun addListener(type: EventType, listener: EventListener)

Alias for emitter.on(eventName, listener).

open override fun addListener(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun addListener(event: String, listener: Function<Unit>)

Event emitter The defined events on documents including:

Link copied to clipboard
fun asIndexedPairs(options: ArrayOptions = definedExternally): Readable

This method returns a new stream with chunks of the underlying stream paired with a counter in the form [index, chunk]. The first index value is 0 and it increases by 1 for each chunk produced.

Link copied to clipboard
fun <T : ReadableStream> compose(stream: T, options: StreamComposeOptions = definedExternally): T
fun <T : ReadableStream> compose(stream: ComposeFnParam, options: StreamComposeOptions = definedExternally): T
Link copied to clipboard
open fun cork()

The writable.cork() method forces all written data to be buffered in memory. The buffered data will be flushed when either the {@link uncork} or {@link end} methods are called.

Link copied to clipboard
open override fun destroy()

Destroy the stream. Optionally emit an 'error' event, and emit a 'close' event (unless emitClose is set to false). After this call, the readable stream will release any internal resources and subsequent calls to push() will be ignored.

open override fun destroy(error: <Error class: unknown class>)
Link copied to clipboard
fun drop(limit: Number, options: ArrayOptions = definedExternally): Readable

This method returns a new stream with the first limit chunks dropped from the start.

Link copied to clipboard
open override fun emit(event: <Error class: unknown class>, vararg args: Any?): Boolean
open override fun emit(event: String, vararg args: Any?): Boolean

Synchronously calls each of the listeners registered for the event named eventName, in the order they were registered, passing the supplied arguments to each.

Link copied to clipboard
abstract fun end(cb: () -> Unit = definedExternally)
abstract fun end(data: String, cb: () -> Unit = definedExternally)
abstract fun end(str: String, encoding: BufferEncoding = definedExternally, cb: () -> Unit = definedExternally)
open override fun end(chunk: Any?, cb: () -> Unit = definedExternally)
open fun end(chunk: Any?, encoding: BufferEncoding, 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
fun every(    fn: (data: Any?, options: ArrayOptions?) -> <Error class: unknown class><Boolean>,     options: ArrayOptions = definedExternally): <Error class: unknown class><Boolean>

This method is similar to Array.prototype.every and calls fn on each chunk in the stream to check if all awaited return values are truthy value for fn. Once an fn call on a chunk awaited return value is falsy, the stream is destroyed and the promise is fulfilled with false. If all of the fn calls on the chunks return a truthy value, the promise is fulfilled with true.

Link copied to clipboard
fun filter(fn: (data: Any?, options: ArrayOptions?) -> <Error class: unknown class><Boolean>, options: ArrayOptions = definedExternally): Readable

This method allows filtering the stream. For each chunk in the stream the fn function will be called and if it returns a truthy value, the chunk will be passed to the result stream. If the fn function returns a promise - that promise will be awaited.

Link copied to clipboard
fun find(    fn: (data: Any?, options: ArrayOptions?) -> <Error class: unknown class><Boolean>,     options: ArrayOptions = definedExternally): <Error class: unknown class><Any?>

fun <T> find(fn: (data: Any?, options: ArrayOptions?) -> Boolean, options: ArrayOptions = definedExternally): <Error class: unknown class><T?>

This method is similar to Array.prototype.find and calls fn on each chunk in the stream to find a chunk with a truthy value for fn. Once an fn call's awaited return value is truthy, the stream is destroyed and the promise is fulfilled with value for which fn returned a truthy value. If all of the fn calls on the chunks return a falsy value, the promise is fulfilled with undefined.

Link copied to clipboard
fun flatMap(fn: (data: Any?, options: ArrayOptions?) -> Any?, options: ArrayOptions = definedExternally): Readable

This method returns a new stream by applying the given callback to each chunk of the stream and then flattening the result.

Link copied to clipboard
fun forEach(    fn: (data: Any?, options: ArrayOptions?) -> <Error class: unknown class><<Error class: unknown class>>,     options: ArrayOptions = definedExternally): <Error class: unknown class><<Error class: unknown class>>

This method allows iterating a stream. For each chunk in the stream the fn function will be called. If the fn function returns a promise - that promise will be awaited.

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 EventEmitter.defaultMaxListeners}.

Link copied to clipboard
abstract fun isPaused(): Boolean
Link copied to clipboard
fun iterator(options: ReadableIteratorOptions = definedExternally): <Error class: unknown class><Any?>

The iterator created by this method gives users the option to cancel the destruction of the stream if the for await...of loop is exited by return, break, or throw, or if the iterator should destroy the stream if the stream emitted an error during iteration.

Link copied to clipboard
fun listenerCount(type: EventType, listener: EventListener = definedExternally): Double

Returns the number of listeners listening for the event named eventName. If listener is provided, it will return how many times the listener is found in the list of the listeners of the event.

Link copied to clipboard

Returns a copy of the array of listeners for the event named eventName.

Link copied to clipboard
fun map(fn: (data: Any?, options: ArrayOptions?) -> Any?, options: ArrayOptions = definedExternally): Readable

This method allows mapping over the stream. The fn function will be called for every chunk in the stream. If the fn function returns a promise - that promise will be awaited before being passed to the result stream.

Link copied to clipboard
fun off(type: EventType, listener: EventListener)

Alias for emitter.removeListener().

Link copied to clipboard
fun on(type: EventType, listener: EventListener)

Adds the listener function to the end of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventName and listener will result in the listener being added, and called, multiple times.

open override fun on(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun on(event: String, listener: Function<Unit>)
Link copied to clipboard
fun once(type: EventType, listener: EventListener)

Adds a one-time listener function for the event named eventName. The next time eventName is triggered, this listener is removed and then invoked.

open override fun once(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun once(event: String, listener: Function<Unit>)
Link copied to clipboard
abstract fun pause()
Link copied to clipboard
abstract fun <T : WritableStream> pipe(destination: T, options: ReadableStreamPipeOptions = definedExternally): T
fun <T : WritableStream> pipe(destination: T, options: StreamPipeOptions = definedExternally): T
Link copied to clipboard

Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventName and listener will result in the listener being added, and called, multiple times.

open override fun prependListener(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun prependListener(event: String, listener: Function<Unit>)
Link copied to clipboard

Adds a one-timelistener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.

open override fun prependOnceListener(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun prependOnceListener(event: String, listener: Function<Unit>)
Link copied to clipboard
fun push(chunk: Any?, encoding: BufferEncoding = definedExternally): Boolean
Link copied to clipboard

Returns a copy of the array of listeners for the event named eventName, including any wrappers (such as those created by .once()).

Link copied to clipboard
abstract fun read(size: Number = definedExternally): Any
Link copied to clipboard
open fun readOrNull(size: Number = definedExternally): Any?

The readable.read() method reads data out of the internal buffer and returns it. If no data is available to be read, null is returned. By default, the data is returned as a Buffer object unless an encoding has been specified using the readable.setEncoding() method or the stream is operating in object mode.

Link copied to clipboard
fun <T> reduce(    fn: (previous: T, data: Any?, options: ArrayOptions?) -> T,     initial: T,     options: ArrayOptions = definedExternally): <Error class: unknown class><T>

fun <T> reduce(    fn: (previous: Any?, data: Any?, options: ArrayOptions?) -> T,     initial: Nothing? = definedExternally,     options: ArrayOptions = definedExternally): <Error class: unknown class><T>

This method calls fn on each chunk of the stream in order, passing it the result from the calculation on the previous element. It returns a promise for the final value of the reduction.

Link copied to clipboard
fun removeAllListeners(type: EventType = definedExternally)

Removes all listeners, or those of the specified eventName.

Link copied to clipboard
fun removeListener(type: EventType, listener: EventListener)

Removes the specified listener from the listener array for the event named eventName.

open override fun removeListener(event: <Error class: unknown class>, listener: Function<Unit>)
open override fun removeListener(event: String, listener: Function<Unit>)
Link copied to clipboard
abstract fun resume()
Link copied to clipboard

The writable.setDefaultEncoding() method sets the default encoding for a Writable stream.

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
fun some(    fn: (data: Any?, options: ArrayOptions?) -> <Error class: unknown class><Boolean>,     options: ArrayOptions = definedExternally): <Error class: unknown class><Boolean>

This method is similar to Array.prototype.some and calls fn on each chunk in the stream until the awaited return value is true (or any truthy value). Once an fn call on a chunk awaited return value is truthy, the stream is destroyed and the promise is fulfilled with true. If none of the fn calls on the chunks return a truthy value, the promise is fulfilled with false.

Link copied to clipboard
fun take(limit: Number, options: ArrayOptions = definedExternally): Readable

This method returns a new stream with the first limit chunks.

Link copied to clipboard
fun toArray(options: ArrayOptions = definedExternally): <Error class: unknown class><<Error class: unknown class><Any?>>

This method allows easily obtaining the contents of a stream.

Link copied to clipboard
open fun uncork()

The writable.uncork() method flushes all data buffered since {@link cork} was called.

Link copied to clipboard
abstract fun unpipe(destination: WritableStream = definedExternally)
Link copied to clipboard
abstract fun unshift(chunk: String, encoding: BufferEncoding = definedExternally)

override fun unshift(chunk: Any?, encoding: BufferEncoding = definedExternally)

Passing chunk as null signals the end of the stream (EOF) and behaves the same as readable.push(null), after which no more data can be written. The EOF signal is put at the end of the buffer and any buffered data will still be flushed.

Link copied to clipboard
abstract fun wrap(stream: ReadableStream)
Link copied to clipboard
abstract fun write(    buffer: <Error class: unknown class><out <Error class: unknown class>>,     cb: (<Error class: unknown class>?) -> Unit = definedExternally): Boolean
abstract fun write(str: String, encoding: BufferEncoding = definedExternally, cb: (<Error class: unknown class>?) -> Unit = definedExternally): Boolean
open fun write(chunk: Any?, encoding: BufferEncoding, callback: (<Error class: unknown class>?) -> Unit = definedExternally): Boolean