@lacunahub/letsfrag
    Preparing search index...

    Interface ClusterManagerEvents

    Events emitted by ClusterManager.

    interface ClusterManagerEvents {
        clusterCreate: [cluster: Cluster];
        clusterDeath: [cluster: Cluster];
        clusterReady: [cluster: Cluster];
        clusterTimeout: [cluster: Cluster];
        clusterUnhealthy: [cluster: Cluster];
        error: [error: Error];
        ready: [];
        register: [];
    }
    Index

    Properties

    clusterCreate: [cluster: Cluster]

    Emitted when a cluster is created

    clusterDeath: [cluster: Cluster]

    Emitted when a cluster dies.

    clusterReady: [cluster: Cluster]

    Emitted when a cluster becomes ready.

    clusterTimeout: [cluster: Cluster]

    Emitted when a cluster spawn times out.

    clusterUnhealthy: [cluster: Cluster]

    Emitted when a cluster fails health checks and will be respawned

    error: [error: Error]

    Emitted when an error occurs.

    ready: []

    Emitted when all clusters are ready.

    register: []

    Emitted when the manager successfully registers with the broker