added new queue lib with batch processor and provider

This commit is contained in:
Boki 2025-06-14 15:02:10 -04:00
parent ddcf94a587
commit 6c548416d1
19 changed files with 1939 additions and 35 deletions

11
libs/queue/src/index.ts Normal file
View file

@ -0,0 +1,11 @@
export * from './batch-processor';
export * from './provider-registry';
export * from './queue-manager';
export * from './types';
// Re-export commonly used functions
export { initializeBatchCache, processBatchJob, processItems } from './batch-processor';
export { QueueManager } from './queue-manager';
export { providerRegistry } from './provider-registry';