UNPKG

arvo-event-handler

Version:

A complete set of orthogonal event handler and orchestration primitives for Arvo based applications, featuring declarative state machines (XState), imperative resumables for agentic workflows, contract-based routing, OpenTelemetry observability, and in-me

18 lines (17 loc) 597 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrchestrationExecutionStatus = void 0; /** * Enumeration of possible orchestration execution statuses. * * Determines whether an orchestration is executing normally or has encountered * a terminal failure requiring error event emission. */ exports.OrchestrationExecutionStatus = { /** Orchestration is executing normally */ NORMAL: 'normal', /** Orchestration has failed and entered terminal error state */ FAILURE: 'failure', /** Orchestration is marked as done */ DONE: 'done', };