Skip to content
jefking edited this page Nov 26, 2014 · 4 revisions

Use Case

If you are working with data that is time sensitive and want to handle it as it comes in; this is in contrast to polling a queue for work. The great advantages are execution is event driven and when there are no items being added to the queue your server will be idle.

var queue = new BusQueueReciever("Name", "Connection String");
new BusEvents<ExampleModel>(queue, new EventHandler());

Clone this wiki locally