Search code examples
c#asp.net-corecqrsmediatr

Register a MediatR pipeline with void/Task response


My command:

public class Command : IRequest { ... }

My handler:

public class CommandHandler : IAsyncRequestHandler<Command> { ... }

My pipeline registration (not using open generics):

services.AddTransient<IPipelineBehavior<Command>, MyBehavior<Command>>();

However this doesn't work: Using the generic type 'IPipelineBehavior<TRequest, TResponse>' requires 2 type arguments. And same error for MyBehavior.

The docs mention the Unit struct. How do I use it?


Solution

  • As Mickaël Derriey pointed out, MediatR already defines IRequest, IRequestHandler and IAsyncRequestHandler to not return a value if it isn't needed.

    If you look at IRequest, you can see it actually inherits from IRequest<Unit>, which means when you process Command, your pipeline behavior MyBehavior will return the Unit struct as the response by default without needing to specify an explicit response for your Command.

    As an example:

    public class Command : IRequest { ... }
    public class CommandHandler : IAsyncRequestHandler<Command> { ... }
    
    services.AddTransient<IPipelineBehavior<Command,Unit>, MyBehavior<Command,Unit>>();