- Minor fix to queuing
- Registering event subscriptions when called multiple times works now
Unclaimed project
Are you a maintainer of coravel? Claim this project to take control of your public changelog and roadmap.
Changelog
Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!
Last updated about 1 year ago
Introduces scheduling an invocable with extra parameters.
See https://docs.coravel.net/Scheduler/#scheduling-tasks
This release adds "sub-minute" task scheduling intervals:
EverySecondEveryFiveSecondsEveryTenSecondsEveryFifteenSecondsEveryThirtySecondsEvent 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.
// This will broadcast the event whenever the queue is consummed in the background.
this._queue.QueueBroadcast(new...