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