Skip to main content
Version: Next

@backstage/plugin-events-node

Home > @backstage/plugin-events-node

The events-node module for @backstage/plugin-events-backend.

Classes

Class

Description

DefaultEventsService

In-process event broker which will pass the event to all registered subscribers interested in it. Events will not be persisted in any form. Events will not be passed to subscribers at other instances of the same cluster.

Abstract Classes

Abstract Class

Description

EventRouter

Subscribes to a topic and - depending on a set of conditions - republishes the event to another topic.

SubTopicEventRouter

Subscribes to the provided (generic) topic and publishes the events under the more concrete sub-topic depending on the implemented logic for determining it. Implementing classes might use information from metadata and/or properties within the payload.

Interfaces

Interface

Description

EventBroker

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.

EventParams

EventPublisher

Publishes events to be consumed by subscribers for their topic. The events can come from different (external) sources like emitted themselves, received via HTTP endpoint (i.e. webhook) or from event brokers, queues, etc.

EventsService

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.

EventSubscriber

Handles received events. This may include triggering refreshes of catalog entities or other actions to react on events.

HttpPostIngressOptions

RequestDetails

RequestRejectionDetails

Details for how to respond to the rejection of the received HTTP request transmitting an event payload.

RequestValidationContext

Passed context for the validation at which rejections can be expressed.

Variables

Variable

Description

eventsServiceFactory

eventsServiceRef

The EventsService that allows to publish events, and subscribe to topics. Uses the root scope so that events can be shared across all plugins, modules, and more.

Type Aliases

Type Alias

Description

EventBusMode

EventsServiceEventHandler

EventsServiceSubscribeOptions

RequestValidator

Validator used to check the received HTTP request transmitting an event payload.

E.g., it can be used for signature verification like for GitHub webhook events (https://docs.github.com/en/developers/webhooks-and-events/webhooks/creating-webhooks\#secret) or other kinds of checks.