mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-11 08:33:39 +00:00
812 B
812 B
title, sidebar
| title | sidebar | ||
|---|---|---|---|
| Routes |
|
Routes take the messages coming from a module and push them out another module. The message can be optionally "processed" with any number of processor steps.
YAML Definition
- input: the id of the module that will provide messages to this route
- processors: (optional) array of processors that will be called in order and the result of the previous will be fed to the next processor.
- if at any point the output of a processor is
nullthe entire route will be terminated (subject to change to support outputnullvalues?) - an error in a processor step will also result in the route being terminated
- if at any point the output of a processor is
- output: the id of the module that will consume messages from the route