pub type AutomationEvent = Event;
Expand description
Type aliases for convenience.
Aliased Type§
pub enum AutomationEvent {
Enqueue(Execution),
NextInstruction,
ExecutionFinished,
}
Variants§
Enqueue(Execution)
Enqueues an execution onto the Context’s execution queue.
NextInstruction
Indicates to the context to execute the next instruction.
ExecutionFinished
Indicates that the execution has finished.