Publishing and subscribing using VM Connector
VM Connector helps to exchange messages in intra- and inter-app communication using queues:
- Intra-app communication: Exchanging messages from one flow to another within the same application using queues
- Inter-app communication: Exchanging messages from one application to another using queues
We have two types of queues:
- Persistent queues: This is the more reliable type of queue, where data gets persisted or retained even though the application crashes. This is slower than transient queues.
- Transient queues: This is the more volatile type of queue, where data will not be persisted or retained if the application crashes. This type of queue is faster than persistent queues.
The following are some benefits of VM Connector.
- Distributes messages across the cluster to provide load-balancing capabilities
- Queues messages to process incoming data in an asynchronous manner
Operations
There...