Push Messages to a Component Queue

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

Queued messages will be available to be dequeued and processed by all of the linked downstream components.

local MessageId = queue.push{data=Data}

This function returns a unique string identifier (the message ID) which can be used to relate messages together so you can see actions performed on a message in the Logs.

 

 

Â