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.

    interface EventsService {
        publish(params: EventParams): Promise<void>;
        subscribe(options: EventsServiceSubscribeOptions): Promise<void>;
    }

    Implemented by

    Index

    Methods