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