ZeroMQ (ØMQ)


Zero Message Queue

It is a “message broker” software library developed to make communications between distributed applications easier to program. We already mentioned that ODR-mmbTools consist of separate software modules on the same or different computers. These modules need a way to communicate and exchange data with each other.

ZeroMQ is the communication library that makes inter-application communication easier to program. The library contains sockets and is available for several programming languages.

The library makes an abstraction of the underlying complexity of communication protocols. The Ø or zero stands for no broker. Indeed, no message broker (third-party software) is visible to the programmer because he uses only the offered ZeroMQ sockets.

“Message Queue” stands for queuing messages. For example, the client can start sending messages even when the receiving server is not running. As soon as the server comes online, the queued message transfer begins. The programmer is not bothered with providing additional queue software because ZeroMQ handles it.

Without ZeroMQ and the provided queues, the program would give an error when the server is not running. ZeroMQ will also restart some processes automatically. ZeroMQ takes a lot of burdens away when programming inter-application communication software.

The complexity goes away for the programmer by using the ZeroMQ library.

To guarantee that the communication of the ODR-mmbTools modules works, installing the ZeroMQ library on the DAB headend computer is required.

Back