feat: implement SequentialPipeline with threading and WebSocket support

Added the `SequentialPipeline` class for structured augmentation execution. Integrated threading capabilities via the `THREADED` execution mode in `augmentationPipeline`. Enhanced WebSocket support for real-time data processing through pipelines.
This commit is contained in:
David Snelling 2025-06-04 10:01:46 -07:00
parent 9ffc9d965e
commit a774bb0f82
3 changed files with 453 additions and 4 deletions

View file

@ -48,6 +48,9 @@ export interface IAugmentation {
shutDown(): Promise<void>
getStatus(): Promise<'active' | 'inactive' | 'error'>
// Allow string indexing for dynamic method access
[key: string]: any;
}
/**