Viv JavaScript Runtime - v0.10.2
    Preparing search index...

    Interface PlanBlockedOnWaitEvent

    Emitted when plan execution blocks on a wait instruction, pausing until a deadline elapses or optional resume conditions are satisfied.

    interface PlanBlockedOnWaitEvent {
        deadline: number;
        phase: string;
        plan: string;
        planID: string;
        type: BlockedOnWait;
    }

    Hierarchy

    • PlanExecutionEventBase
      • PlanBlockedOnWaitEvent
    Index

    Properties

    deadline: number

    The diegetic timestamp at which the wait will expire, allowing execution to resume.

    phase: string

    The name of the phase at hand (in which the plan is blocked).

    plan: string

    The name of the plan, as defined in the content bundle.

    planID: string

    The unique identifier for the plan state associated with this event.

    Discriminator for a blocked-on-wait event.