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

Certain versions of .NET core, like 2.1, are no longer supported. There are also some `csproj` items to clean up that were needed for

**Describe the bug** When using a view as mail template the following runtime error appears: "Unable to find view '~/Views/Mail/myTemplate.cshtml'. The following locations were searched: ~/Views/Mail/myTemplate.cshtml" **Affected Coravel Feature** Mailing...

upgrade

**Describe the bug** When a class implements multiple IListener the Broadcast fails because the HandleAsync is Ambiguous. **Affected Coravel Feature** Events **Expected behavior** Possible to use multiple IListerner at the...

**Describe the solution you'd like** Can we have a programmatic way to dynamically specify Coravel:Queue:ConsummationDelay? My use case is the following, I am using this Queueing mechanism for multiply clients...

Hello! Would be nice to be able to have an invocable that's at the same time cancellable and that also contains a payload. What about QueueCancellableInvocableWithPayload()? Thanks, André

Implements both ICancellableTask and IInvocableWithPayload for Issue #182

I'm just trying events, and have run into a problem. I'm using Blazor server-side (.NET5 in VS2019) and have an event as follows... ```c# public class NewWidgetCreated : IEvent {...

**Describe the bug** I'm trying to setup dependency injection for a new **scheduled job with parameters** and followed the following [documentation section](https://docs.coravel.net/Scheduler/#scheduling-with-additional-parameters), without much success. In my `Program.cs` class, I...

I'm trying to get a simple example using EF working so I downloaded the source for this example. https://github.com/jamesmh/coravel/tree/master/Samples/EFCoreSample when I run "dotnet build" (I'm on OSX), I get a...

I can see that when implementing ICancellableTask from the invocable, we get a Token. IScheduler exposes "CancelAllCancellableTasks", is there a way I can cancel a task specifically? (by name?). The...