/
Sending Messages Between Components
Sending Messages Between Components
There are two main methods to send messages between components:
1. Push Messages to a Component Queue
When using queue.push{}
, a message is added to the end of a component's queue. This message is then available to any component that can dequeue and process it, following a first-in, first-out (FIFO) order.
2. Send Messages to a Target Component Translators
When using message.send{}
the message is sent directly to the main function of the target component’s Translator using a component GUID. The message is only available to the target component.
When choosing a method consider the following:
, multiple selections available,
Related content
Send Messages to a Target Component Translators
Send Messages to a Target Component Translators
More like this
Creating a VMD
Creating a VMD
Read with this
Push Messages to a Component Queue
Push Messages to a Component Queue
More like this
Iguana Log Resubmit Best Practices
Iguana Log Resubmit Best Practices
More like this
Reposition a Queue
Reposition a Queue
More like this
Custom Logging
Custom Logging
More like this