Creates an ArvoOrchestratorEventFactory instance for handling orchestration events. Provides type-safe event creation with parent-child subject relationship handling.
const contract = createArvoOrchestratorContract({ ... });const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));const event = factory.init({ source: 'system', data: { parentSubject$$: null, data: 'value' }}); Copy
const contract = createArvoOrchestratorContract({ ... });const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));const event = factory.init({ source: 'system', data: { parentSubject$$: null, data: 'value' }});
The versioned contract for orchestration events
An ArvoOrchestratorEventFactory for creating orchestration events
Creates an ArvoOrchestratorEventFactory instance for handling orchestration events. Provides type-safe event creation with parent-child subject relationship handling.
Example