Prelude API
    Preparing search index...

    Interface Context<M, S>

    Per-message context passed to the handler.

    interface Context<M, S> {
        self: Self<M, S>;
        signal: AbortSignal;
    }

    Type Parameters

    • M
    • S
    Index
    self: Self<M, S>

    The actor processing the message.

    signal: AbortSignal

    Aborted when the actor is killed, fails, or is restarted while this message is in flight. Never aborted by a graceful stop.