coravel icon indicating copy to clipboard operation
coravel copied to clipboard

Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!

Results 93 coravel issues
Sort by recently updated
recently updated
newest added

**Describe the solution you'd like** This library is very promising (thanks for all your work!). Unfortunately I wasn't able to use it in my project because my DbContext uses PostgreSQL...

First off, thank you for a wonderful project! It has really saved me a ton of time rolling my own. As I'm reading the code, it seems I cannot avoid...

CSProj files have been updated to enable SourceLink in your nuget --- *[This pull request was created with an automated workflow]* I noticed that your repository and Nuget package are...

**Describe the bug** I have a pull/push from database scenario where I would like to run them every minute but give the pull a slight head start. (In my case...

Implementation for #148 I went back and forth between a few different approaches but I think this is the one I'm happiest with. Any feedback is much appreciated.

**Describe the solution you'd like** Currently, a global Queue error logging requires some custom glue code: ```cs var queueLogger = serviceProvider.GetRequiredService(); serviceProvider.ConfigureQueue() .OnError(ex => { queueLogger.LogError(ex, "An unhandled exception has...

**Describe the solution you'd like** Continuing discussion from https://github.com/jamesmh/coravel/issues/142 > That being said, there are ways to auto register all event listener classes which could make things easier (but that...

**Describe the solution you'd like** currently we often update our jobs to use a different time, is there any way to actually reconfigure the time a IInvocable does run? Also...

See https://github.com/jamesmh/coravel/pull/136#issuecomment-590404088 Would have to be integrated into the "[multiple configurable queue](https://github.com/jamesmh/coravel/issues/139)" work also.

**Global Scheduled tasks** This might be a broader question to just using Coravel as a task scheduler. How would schedule tasks that need to run once a for the application,...