Interface IMakeDisposeParams

Interface for the parameters of the makeAutoDispose function. IMakeDisposeParams

interface IMakeDisposeParams {
    onDestroy?: (clientId: string, swarmName: string) => void;
    timeoutSeconds: number;
}

Properties

onDestroy?: (clientId: string, swarmName: string) => void

Optional callback invoked when the session is closed.

timeoutSeconds: number

Timeout in seconds before auto-dispose is triggered.