Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created May 16, 2020 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/71193de1d8e6dc400771ae751eedd625 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/71193de1d8e6dc400771ae751eedd625 to your computer and use it in GitHub Desktop.
public class LogCommandHandler : IRequestHandler<LogCommand>
{
private readonly ILogger<LogCommandHandler> _logger;
public LogCommandHandler(ILogger<LogCommandHandler> logger) => _logger = logger;
public Task<Unit> Handle(LogCommand request, CancellationToken cancellationToken)
{
_logger.LogInformation("---- Received message: {Message} ----", request.Message);
return Task.FromResult(Unit.Value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment