Skip to content

Interface: LogImportOrchestrator

Makaio Framework


Makaio Framework / ai-adapters-core / LogImportOrchestrator

Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:26

Minimal interface for log import orchestrators.

Allows LogImportRegistry to manage lifecycle without coupling to a specific orchestrator implementation.

dispose(): void | Promise<void>

Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:34

Dispose of any resources.

void | Promise<void>


isRunning(): boolean

Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:28

Whether the orchestrator is running.

boolean


start(): Promise<void>

Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:30

Start the orchestrator.

Promise<void>


stop(): void | Promise<void>

Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:32

Stop the orchestrator.

void | Promise<void>