RabbitMQ Topology A Queue that works on the basis of FIFO (first in first out). A Publisher is the component that generates some data that is pushed to the queue. Installation Install the correct version of Erlang based on the operating system you are using. Download and install RabbitMQ server . Now install the RabbitMQ .Net client from NuGet Package Manager. Sample Codes using RabbitMQ.Client; using RabbitMQ.Client.Events; using System; using System.Text; using System.Threading; namespace PracticeRabbitMQ { class Program { static void Main() { SendMessage("MessageID", "{MessageID: 1, MessageBody: 'Sample Message' }"); ReceiveMessage("MessageID"); Console.ReadLine(); } ...
By Subhasis Samanta