Interface: LogImportOrchestrator
Makaio Framework / ai-adapters-core / LogImportOrchestrator
Interface: LogImportOrchestrator
Section titled “Interface: 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.
Methods
Section titled “Methods”dispose()
Section titled “dispose()”dispose():
void|Promise<void>
Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:34
Dispose of any resources.
Returns
Section titled “Returns”void | Promise<void>
isRunning()
Section titled “isRunning()”isRunning():
boolean
Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:28
Whether the orchestrator is running.
Returns
Section titled “Returns”boolean
start()
Section titled “start()”start():
Promise<void>
Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:30
Start the orchestrator.
Returns
Section titled “Returns”Promise<void>
stop()
Section titled “stop()”stop():
void|Promise<void>
Defined in: ../../../adapters/core/src/log-importer/registry-types.ts:32
Stop the orchestrator.
Returns
Section titled “Returns”void | Promise<void>