Member Junction
    Preparing search index...

    Interface RealtimeSessionError

    An error surfaced by a realtime session via IRealtimeSession.OnError.

    Mirrors the client-side RealtimeClientError shape: Fatal: true means the session is unusable (transport failure, credential expiry, unexpected close) and the consumer should finalize; Fatal: false is a provider-reported, recoverable error frame.

    interface RealtimeSessionError {
        Code?: string;
        Fatal: boolean;
        Message: string;
    }
    Index

    Properties

    Properties

    Code?: string

    Optional provider-specific error code.

    Fatal: boolean

    Whether the error terminated the session.

    Message: string

    Human-readable error message.