Exemplo n.º 1
0
 public AsyncLockExecutor(IExecute executor)
 {
     _lock     = new AsyncLock();
     _executor = executor;
 }
Exemplo n.º 2
0
 public Executor(Func <Exception, CancellationToken, Task> onException)
 {
     _lock        = new AsyncLock();
     _onException = onException;
 }