Type Alias IEventBusFactory<TAdapters>

IEventBusFactory: {
    use<
        TEvents extends
            BaseEvent<Record<string, unknown>> = BaseEvent<
            Record<string, unknown>,
        >,
    >(
        adapterName?: TAdapters,
    ): IEventBus<TEvents>;
}

The IEventBusFactory contract makes it easy to configure and switch between different IEventBus dynamically.

IMPORT_PATH: "@daiso-tech/core/event-bus/contracts"

Type Parameters

  • TAdapters extends string = string

Type declaration