An interface that identifies the automatic session manager

3.0.3

interface ISessionManager {
    automaticSession: ISession;
    backup: (() => void);
    update: (() => void);
}

Properties

automaticSession: ISession

The automatic Session which has been initialized from the automatic SDK cookies and storage

backup: (() => void)

Record the current state of the automatic session and store it in our cookie string format into the browser's local storage. This is used to restore the session data when the cookie expires.

update: (() => void)

Update the automatic session cookie if required

Type declaration

    • (): void
    • Returns void