arvo-event-handler
Version:
Type-safe event handler system with versioning, telemetry, and contract validation for distributed Arvo event-driven architectures, featuring routing and multi-handler support.
16 lines (15 loc) • 536 B
JavaScript
;
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',
};