API JavaScript HSM Dinamo
    Preparing search index...

    Variable sessionPoolEventsConst

    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;
    } = ...

    Barramento de eventos único, para todos os pools do processo (não por identidade — filtrar por key no handler).

    Type Declaration