I am using RabbitMQ to publish/subscribe. I have a class (in C#) that has the following methods to do this job:<br><br> void write (Measurement m);<br> Measurement read();<br> void publish(string queue); <br> Measurement subscribe(string queue); <br>
<br>I am having difficulty separating writing a message from publishing the message to a queue (or reading a message from subscribing to a queue for that message). What would be the best method of design/implementation?<br>
<br>Regards,<br>Demi<br>