Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Components Feeder components can use the queue.push function to push messages into the queue for the componenttheir queue to be sent downstream to linked components.

These messages are received Queued messages will be available to be dequeued and processed by all of the components that have connections from the component (see Linking components). This is the Lua code to call it: linked downstream components.

Code Block
languagelua
local MessageId = queue.push{data=Data}

This function returns a unique string identifier (the message ID) which can be used to link relate messages together so you can see actions performed on a message .See Custom Logging for more information on thisin the Logs.