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