-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathCommandGateway.cs
33 lines (28 loc) · 1.66 KB
/
CommandGateway.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Revo.Core.Commands
{
public class CommandGateway(ICommandRouter commandRouter) : ICommandGateway
{
private readonly ICommandRouter commandRouter = commandRouter;
public Task SendAsync(ICommandBase command, CommandExecutionOptions executionOptions,
CancellationToken cancellationToken = default(CancellationToken))
{
var commandBus = commandRouter.FindRoute(command.GetType())
?? throw new ArgumentException($"No route to a command bus found for command type {command.GetType()}");
return commandBus.SendAsync(command, executionOptions, cancellationToken);
}
public Task<TResult> SendAsync<TResult>(ICommand<TResult> command, CancellationToken cancellationToken = default(CancellationToken)) =>
SendAsync(command, CommandExecutionOptions.Default, cancellationToken);
public Task<TResult> SendAsync<TResult>(ICommand<TResult> command, CommandExecutionOptions executionOptions,
CancellationToken cancellationToken = default(CancellationToken))
{
var commandBus = commandRouter.FindRoute(command.GetType())
?? throw new ArgumentException($"No route to a command bus found for command type {command.GetType()}");
return commandBus.SendAsync(command, executionOptions, cancellationToken);
}
public Task SendAsync(ICommandBase command, CancellationToken cancellationToken = default(CancellationToken)) =>
SendAsync(command, CommandExecutionOptions.Default, cancellationToken);
}
}