Interface SessionResumptionConfig

Configuration of session resumption mechanism.

Included in LiveConnectConfig.session_resumption. If included server will send LiveServerSessionResumptionUpdate messages.

interface SessionResumptionConfig {
    handle?: string;
    transparent?: boolean;
}

Properties

handle?: string

Session resumption handle of previous session (session to restore).

If not present new session will be started.

transparent?: boolean

If set the server will send last_consumed_client_message_index in the session_resumption_update messages to allow for transparent reconnections.