ReadableForEachOptions

data class ReadableForEachOptions(var concurrency: Int = 1, var signal: AbortSignal? = null)

Readable For-each Options

Defines the structure of options which relate to the Readable.forEach method.

Constructors

Link copied to clipboard
constructor(concurrency: Int = 1, signal: AbortSignal? = null)

Properties

Link copied to clipboard

The maximum number of concurrent map operations to perform.

Link copied to clipboard

Abort signal to use for the operation.