CommandScheduler 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CommandScheduler --version 1.0.2
NuGet\Install-Package CommandScheduler -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CommandScheduler" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CommandScheduler --version 1.0.2
#r "nuget: CommandScheduler, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CommandScheduler as a Cake Addin
#addin nuget:?package=CommandScheduler&version=1.0.2

// Install CommandScheduler as a Cake Tool
#tool nuget:?package=CommandScheduler&version=1.0.2

Integrate MediatR with Hangfire

To schedule your commands, execute them parallel with retry option and monitor them. Hangfire gives you all these kind of features but You have to have public method which You have to pass to Hangifre method (for example BackgroundJob.Enqueue). This is a problem – with mediator pattern You cannot pass public method of handler because You have decoupled it from invoker. So You need special way to integrate MediatR with Hangfire without affecting basic assumptions.

I presented the way of processing commands asynchronously using MediatR and Hangfire. With this approach we have:

  1. Decoupled invokers and handlers of commands.
  2. Scheduling commands mechanism.
  3. Invoker and handler of command may be other processes.
  4. Commands execution monitoring.
  5. Commands execution retries mechanism.

These benefits are very important during development using eventual consistency approach. We have more control over commands processing and we can react quickly if problem will appear.

For this, In HSP.Infrastructure.Toolkits.CommandScheduler we difined 4 classes:

  • CommandsScheduler serializes commands and sends them to Hangfire.
  • CommandsExecutor responods to Hangfire jobs execution, deserializes commands and sends them to handlers using MediatR.
  • MediatorSerializedObject wrapper class for serialized/deserialized commands with additional properties – command type and additional description.
  • MediatorExtension extension methods for IMediator
public class MyMController : Controller
{
    private IMediator _mediator;
    
    public MyMicroserviceController(IMediator mediator)
    {
        _mediator = mediator;
    }
    
    [HttpPost]
    public async Task<IActionResult> Post([FromBody] TestCommand testCommand)
    {
     _mediator.Enqueue(testCommand);

      return Ok();
    }
  }

And our commands are scheduled, invoked and monitored by Hangfire.

Download source code

CommandScheduler is available on GitHub. https://github.com/AliBayatGH/CommandScheduler

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.3 1,183 9/23/2022
2.2.2 440 9/23/2022
2.1.2 397 9/13/2022
2.1.1 377 9/13/2022
2.1.0 400 9/13/2022
2.0.0 1,097 8/10/2021
1.0.5 1,124 1/21/2020
1.0.4 506 12/18/2019
1.0.3 493 12/4/2019
1.0.2 487 12/2/2019
1.0.1 464 12/2/2019
1.0.0 454 12/1/2019