@logistically/events
Version:
A production-ready event-driven architecture library for NestJS with Redis Streams, comprehensive batching, reliable consumption, and enterprise-grade features.
17 lines (16 loc) • 687 B
TypeScript
/**
* @logistically/events - A production-ready event-driven architecture library for NestJS
* Copyright (c) 2024 Onwello Team
* Licensed under the MIT License
*/
export * from './event-types';
export * from './event-publisher';
export * from './event-consumer';
export * from './event-routing';
export * from './event-transport';
export * from './event-publisher/batching-strategy';
export * from './event-publisher/strategies/strategy-factory';
export * from './event-publisher/strategies/redis-streams-strategy';
export * from './event-publisher/strategies/console-strategy';
export * from './event-publisher/batched-publisher';
export * from './event-consumer/batched-consumer';