@lacunahub/letsfrag
    Preparing search index...

    Interface ClusterEvents

    Events emitted by the Cluster.

    interface ClusterEvents {
        death: [cluster: Cluster, process?: Fork];
        error: [error: Error];
        message: [message: IPCMessage];
        ready: [];
        spawn: [process: Fork];
    }
    Index

    Properties

    death: [cluster: Cluster, process?: Fork]

    Emitted when the cluster child process dies or exits.

    error: [error: Error]

    Emitted when an error occurs in the cluster child process.

    message: [message: IPCMessage]

    Emitted when the cluster receives an IPC message.

    ready: []

    Emitted when the cluster child process becomes ready.

    spawn: [process: Fork]

    Emitted when the cluster child process is spawned.