I have added a Broadcast method to distribute in guaranteed order a single message to multiple destinations. If one of those destinations is down, message delivery will resume when it becomes available again. If the message cannot be delivered in 24 hours, the the message will get logged to the failed log.
The new version of this library also creates send, read and failed log files by minute to assure the files are not too large when there is a very high number of messages flowing. It will also remove the sent and read files after 48 hours, a value you can change in the constructor.
Get the NuGet package here. Or check out the code on GitHub. Here’s some test code that demonstrates how these features work. (Update: the 1.2.2 package just published adds CountOutbound and CountInbound properties to allow you determine if your queues are getting backed up and more receiving or less sending should occur based on the limits you choose.)
[TestMethod] //test of send while dest down
public void DestDownTest()
{
var q1Address = new Address("qd1pipe");
var q2Address = new Address("qd2pipe");
using (var q1 = new MessageQueue("qd1", q1Address, @"c:\temp\qd1"))
{
q1.Send(q2Address, "hello world 1");
Thread.Sleep(200); //destination not available
q1.Send(q2Address, "hello world 2");
// now fire up the destination - simulating dest down
using (var q2 = new MessageQueue("qd2", q2Address, @"c:\temp\qd2"))
{
var msg = q2.Receive();
Assert.IsNotNull(msg);
Assert.AreEqual(msg.MessageString, "hello world 1");
msg = q2.Receive();
Assert.IsNotNull(msg);
Assert.AreEqual(msg.MessageString, "hello world 2");
}
}
}
[TestMethod] //test of broadcast to multiple destinations
public void BroadcastTest()
{
var q1Address = new Address("qb1pipe");
var q2Address = new Address("qb2pipe");
var q3Address = new Address("qb3pipe");
var q4Address = new Address("qb4pipe");
using (var q4 = new MessageQueue("qb4", q4Address, @"c:\temp\qb4"))
using (var q3 = new MessageQueue("qb3", q3Address, @"c:\temp\qb3"))
using (var q2 = new MessageQueue("qb2", q2Address, @"c:\temp\qb2"))
using (var q1 = new MessageQueue("qb1", q1Address, @"c:\temp\qb1"))
{
q1.Broadcast(new []
{
q2Address,
q3Address,
q4Address
}, "hello\r\nworld");
var msg2 = q2.Receive();
Assert.IsNotNull(msg2);
Assert.AreEqual(msg2.MessageString, "hello\r\nworld");
var msg3 = q3.Receive();
Assert.IsNotNull(msg3);
Assert.AreEqual(msg3.MessageString, "hello\r\nworld");
var msg4 = q4.Receive();
Assert.IsNotNull(msg4);
Assert.AreEqual(msg4.MessageString, "hello\r\nworld");
// confirm message received is the same
Assert.AreEqual(msg2.Id, msg3.Id);
Assert.AreEqual(msg3.Id, msg4.Id);
Assert.AreEqual(msg2.Sent, msg3.Sent);
Assert.AreEqual(msg3.Sent, msg4.Sent);
}
}
If you find it helpful, please give me a shout. If you want a change, shout louder.