UNPKG

@nestjstools/messaging

Version:

Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.

5 lines (4 loc) 127 B
import { IMessageBus } from './i-message-bus'; export interface IMessageBusFactory<T> { create(channel: T): IMessageBus; }