SessionResumptionConfig

@Serializable
data class SessionResumptionConfig(val handle: String? = null, val transparent: Boolean? = null)

Configuration of session resumption mechanism.

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

Constructors

Link copied to clipboard
constructor(handle: String? = null, transparent: Boolean? = null)

Properties

Link copied to clipboard
val handle: String? = null

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

Link copied to clipboard
val transparent: Boolean? = null

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