public async Task WaitForEventToBeHandledWithTimeoutAsync(Type eventType, TimeSpan timeout)
 {
     await _cqrsAwaiter.WaitActionCompletionWithTimeoutAsync(eventType, timeout);
 }
Ejemplo n.º 2
0
 public async Task WaitForCommandToBeHandledWithTimeoutAsync(Type commandType, TimeSpan timeout)
 {
     await _cqrsAwaiter.WaitActionCompletionWithTimeoutAsync(commandType, timeout);
 }