Skip to content

EventKind

Namespace: SideXP.Broadcaster

public enum EventKind

The four kinds of event the bus dispatches, reported on monitor spans and registration changes.

Fields

Signal

Signal = 0

A fire-and-forget notification with 0..N listeners.

Cue

Cue = 1

An awaitable "everyone, do your part" with 0..N performers.

Command

Command = 2

An order performed by exactly one handler.

Request

Request = 3

A question answered by exactly one handler.