UNPKG

@flowlab/event

Version:

FlowLab event-driven system

11 lines (10 loc) 276 B
import { EventBus } from './EventBus'; /** * InMemoryBus 是默认的事件总线实现,基于内存事件分发 */ export declare class InMemoryBus extends EventBus { private running; start(): Promise<void>; stop(): Promise<void>; isRunning(): boolean; }