Interface ISessionConfig

Configuration interface for scheduled or rate-limited sessions.

interface ISessionConfig {
    delay?: number;
    onDispose?: () => void;
}

Properties

Properties

delay?: number
onDispose?: () => void

Optional callback function invoked when the session is disposed. Called during session cleanup to perform any necessary resource cleanup operations.