Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
2.1.0.tar.gz | 2018-10-31 | 2.1 MB | |
2.1.0.zip | 2018-10-31 | 2.2 MB | |
README.md | 2018-10-31 | 437 Bytes | |
Totals: 3 Items | 4.3 MB | 0 |
Broadcast Events In Background Queue
Event broadcasting is great - but what if your event listeners are doing some heavy / long-winded tasks?
Using QueueBroadcast
you can queue an event to be broadcasted in the background so your app can continue to be responsive.
:::c#
// This will broadcast the event whenever the queue is consummed in the background.
this._queue.QueueBroadcast(new OrderCreated(orderId));