Event

NodeDescriptionInputsOutputs
emitEmits an event to the bus with a payload and routing strategy.channel Text, payload Any, routing Text, graph_pattern Text, data_type Textpayload Any
handlerEvent handler subgraph. Contains nodes that only evaluate when an event fires on the specified channel. Drill in to define the handler logic.channel Text, auto_listen Boolean, priority Numberresult Any
listenListens for events on a channel and outputs the received payload.channel Text, auto_listen Boolean, priority Numberpayload Any

emit

Emits an event to the bus with a payload and routing strategy.

Inputs:

Output: payload (Any) — pass-through of the input payload

See also: listen

handler

Event handler subgraph. Contains nodes that only evaluate when an event fires on the specified channel. Drill in to define the handler logic.

Inputs:

Output: result (Any) — handler output (from group/output inside the handler)

See also: emit, listen

listen

Listens for events on a channel and outputs the received payload.

Inputs:

Output: payload (Any) — received event data

See also: emit