React Native Firebase
    Preparing search index...

    Interface LiveSessionResumptionUpdateBeta

    An update of the session resumption state.

    This message is only sent if SessionResumptionConfig was set in the session setup.

    interface LiveSessionResumptionUpdate {
        lastConsumedClientMessageIndex?: number;
        newHandle?: string;
        resumable?: boolean;
        type: "sessionResumptionUpdate";
    }
    Index

    Properties

    lastConsumedClientMessageIndex?: number

    The index of the last client message that is included in the state represented by this update.

    newHandle?: string

    The new handle that represents the state that can be resumed. Empty if resumable is false.

    resumable?: boolean

    Indicates if the session can be resumed at this point.

    type: "sessionResumptionUpdate"