Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 999
grokky Avatar asked Feb 22 '17 07:02

grokky


2 Answers

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>>();
like image 126
bmeredith Avatar answered Nov 05 '22 02:11

bmeredith


I think I've figured it out, and it seems to work so far.

public class Command : IRequest<Unit> { ... }
public class CommandHandler : IAsyncRequestHandler<Command, Unit> { ... }

services.AddTransient<IPipelineBehavior<Command,Unit>, MyBehavior<Command,Unit>>();
like image 1
grokky Avatar answered Nov 05 '22 01:11

grokky