AliBayatGH / CommandScheduler

Integrate MediatR with Hangfire

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Integrate MediatR with Hangfire

Give a Star! ⭐

If you like this project, learn something or you are using it in your applications, please give it a star. Thanks!

To schedule your commands, execute them parallel with retry option and monitor them. Hangfire gives me 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 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.

Installation

Install the package via NuGet first: Install-Package CommandScheduler

Or via the .NET Core command line interface: dotnet add package CommandScheduler

Either commands, from Package Manager Console or .NET Core CLI, will download and install CommandScheduler and all required dependencies.

The CommandScheduler includes a IServiceCollection.AddCommandsScheduler(Connection, Assembly) extension method, allowing you to register CommandScheduler.

public void ConfigureServices(IServiceCollection services)
{
  services.AddControllers();

  services.AddCommandsScheduler(Configuration.GetConnectionString("HangfireConnection"), typeof(Startup));
}

About

Integrate MediatR with Hangfire

License:GNU General Public License v3.0


Languages

Language:C# 100.0%