interface ISessionHealth {
    isHealthy: boolean;
    isExpired(): boolean;
    setHealthy(isHealthy: boolean): void;
}

Implemented by

Properties

Methods

Properties

isHealthy: boolean

Flag indicating that the session is healthy.

Methods

  • Checks if the session has expired.

    Returns boolean

  • Set flag session health status.

    Parameters

    • isHealthy: boolean

    Returns void

MMNEPVFCICPMFPCPTTAAATR