JavaScript HSM API Dinamo
    Preparing search index...

    VariablesessionPoolEventsConst

    sessionPoolEvents: {
        on<E extends keyof SessionPoolEvents>(
            event: E,
            listener: SessionPoolEvents[E],
        ): void;
        once<E extends keyof SessionPoolEvents>(
            event: E,
            listener: SessionPoolEvents[E],
        ): void;
        off<E extends keyof SessionPoolEvents>(
            event: E,
            listener: SessionPoolEvents[E],
        ): void;
    } = ...

    A single event bus for all process pools (not by identity—filter by key in the handler).

    Type Declaration