package KismetEventBus

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

message EventbusEvent

eventbus.proto:14

An eventbus event is sent as a serialized JSON object containing the complete content of the original event. The content map is defined by the event, and can be arbitrary.

message EventbusPublishEvent

eventbus.proto:29

Publish an event; remotely pubished events must not overlap internal events and must be limited to pure-json data; the content of a remote published event will not be translated to a complex C++ object. event_content_json will be published in the kismet event as event_content["kismet.eventbus.event_json"]

message EventbusRegisterListener

eventbus.proto:21

Registering event listeners causes the eventbus to send an event record each time a matching type is sent. A type of '*' receives all events.