Creates a new Arvo orchestrator instance with default components. For custom components, use ArvoOrchestrator constructor directly.
The orchestrator's resource locking is enabled if any machine requires it. Locking is needed when:
const orchestrator = createArvoOrchestrator({ memory: new MyMemoryImplementation(), executionunits: 1, machines: [machineA, machineB]}); Copy
const orchestrator = createArvoOrchestrator({ memory: new MyMemoryImplementation(), executionunits: 1, machines: [machineA, machineB]});
Orchestrator configuration
Configured ArvoOrchestrator instance with default registry and execution engine
Creates a new Arvo orchestrator instance with default components. For custom components, use ArvoOrchestrator constructor directly.
Remarks
The orchestrator's resource locking is enabled if any machine requires it. Locking is needed when:
Example