Interface SuspendableDeadline

A live deadline that the host-attention signal can suspend.

interface SuspendableDeadline {
    dispose(): void;
    setAwaiting(awaiting: boolean): void;
}

Methods

  • Tell the deadline whether the host is waiting on a person right now.

    Parameters

    • awaiting: boolean

    Returns void