<div dir="ltr">Apology if it's very basic question. I am new to RabbitMQ.<div><br></div><div>I have one requirement where My receiver should be notified if There is something written in Queue by sender. I don't want to implement a solution where I will check every time in queue and if its there I will deque.</div><div><br></div><div>I dont want like this where I will check every time in a queue rather please provide some solution where I will get notification while something written in queue.</div><div><br></div><div><pre style="font-family: Consolas; color: black; background-position: initial initial; background-repeat: initial initial;"><span style="color:blue;">while</span> (<span style="color:blue;">true</span>)
{
<span style="color:blue;">var</span> ea =(<span style="color:#2b91af;">BasicDeliverEventArgs</span>)consumer.Queue.Dequeue();
<span style="color:blue;">var</span> body = ea.Body;
<span style="color:blue;">var</span> message = <span style="color:#2b91af;">Encoding</span>.UTF8.GetString(body);
<span style="color:#2b91af;">Console</span>.WriteLine(<span style="color:#a31515;">" [x] Received {0}"</span>, message);
 
<span style="color:blue;">int</span> dots = message.Split(<span style="color:#a31515;">'.'</span>).Length - 1;
<span style="color:#2b91af;">Thread</span>.Sleep(dots * 1000);
 
<span style="color:#2b91af;">Console</span>.WriteLine(<span style="color:#a31515;">" [x] Done"</span>);
 
channel.BasicAck(ea.DeliveryTag, <span style="color:blue;">false</span>);</pre><pre style="font-family: Consolas; color: black; background-position: initial initial; background-repeat: initial initial;"><br></pre><pre style="font-family: Consolas; color: black; background-position: initial initial; background-repeat: initial initial;">}<br></pre><pre style="font-family: Consolas; color: black; background-position: initial initial; background-repeat: initial initial;"><br></pre></div><div><br></div><div>Thanks in Advance</div></div>