Cluster

sealed external interface Cluster : EventEmitter(source)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract val isMaster: Boolean
Link copied to clipboard
abstract val isPrimary: Boolean

True if the process is a primary. This is determined by the process.env.NODE_UNIQUE_ID. If process.env.NODE_UNIQUE_ID is undefined, then isPrimary is true.

Link copied to clipboard
abstract val isWorker: Boolean

True if the process is not a primary (it is the negation of cluster.isPrimary).

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract val SCHED_NONE: Double
Link copied to clipboard
abstract val SCHED_RR: Double
Link copied to clipboard
abstract var schedulingPolicy: Double

The scheduling policy, either cluster.SCHED_RR for round-robin or cluster.SCHED_NONE to leave it to the operating system. This is a global setting and effectively frozen once either the first worker is spawned, or .setupPrimary() is called, whichever comes first.

Link copied to clipboard

After calling .setupPrimary() (or .fork()) this settings object will contain the settings, including the default values.

Link copied to clipboard
Link copied to clipboard
abstract val worker: Worker?

A reference to the current worker object. Not available in the primary process.

Link copied to clipboard
abstract val workers: Dict<Worker>?

A hash that stores the active worker objects, keyed by id field. This makes it easy to loop through all the workers. It is only available in the primary process.

Functions

Link copied to clipboard
abstract fun addListener(event: String, listener: Function<Unit>)

events.EventEmitter

fun addListener(type: EventType, listener: EventListener)

Alias for emitter.on(eventName, listener).

Link copied to clipboard
abstract fun disconnect(callback: () -> Unit = definedExternally)
Link copied to clipboard
abstract fun emit(event: Symbol, vararg args: Any?): Boolean
abstract fun emit(event: String, vararg args: Any?): Boolean

fun emit(type: EventType, 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

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
abstract fun fork(env: Any? = definedExternally): Worker

Spawn a new worker process.

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
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 off(type: EventType, listener: EventListener)

Alias for emitter.removeListener().

Link copied to clipboard
abstract fun on(event: String, listener: Function<Unit>)

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.

Link copied to clipboard
abstract fun once(event: String, listener: Function<Unit>)

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.

Link copied to clipboard
abstract fun prependListener(event: String, listener: Function<Unit>)

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.

Link copied to clipboard
abstract fun prependOnceListener(event: String, listener: Function<Unit>)

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.

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
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.

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 setupMaster(settings: ClusterSettings = definedExternally)
Link copied to clipboard
abstract fun setupPrimary(settings: ClusterSettings = definedExternally)

setupPrimary is used to change the default 'fork' behavior. Once called, the settings will be present in cluster.settings.