Blog Archive for February 16, 2017

Durable Queue in RabbitMQ with C#

February 16, 2017

This post outlines a durable messages approach using RabbitMQ as transport. If the receiver crashes, the message it was processing will be presented again when it restarts.

This is a many receivers to one sender situation. Each message will be processed once by one of the processors, and the messages …