Interface IMachineExectionEngine

Interface defining a machine execution engine.

interface IMachineExectionEngine {
    execute: ((param: ExecuteMachineInput, opentelemetry: ArvoEventHandlerOpenTelemetryOptions) => ExecuteMachineOutput);
}

Implemented by

Properties

Properties

execute: ((param: ExecuteMachineInput, opentelemetry: ArvoEventHandlerOpenTelemetryOptions) => ExecuteMachineOutput)

Executes a state machine and processes events.

Type declaration