Example #1
0
 public AsyncLock()
 {
     _semaphore = new AsyncSemaphore(1);
     _releaser = Task.FromResult(new Releaser(this));
 }
Example #2
0
 public AsyncLock()
 {
     _semaphore = new AsyncSemaphore(1);
     _releaser  = Task.FromResult(new Releaser(this));
 }