Backstage
    Preparing search index...

    Allows a decoupled and asynchronous communication between components. Components can publish events for a given topic and others can subscribe for future events for topics they are interested in.

    use EventsService instead

    interface EventBroker {
        publish(params: EventParams): Promise<void>;
        subscribe(...subscribers: (EventSubscriber | EventSubscriber[])[]): void;
    }

    Implemented by

    Index

    Methods