예제 #1
0
 public async Task EnterLock()
 {
     await WaitAll();
     Task result = new Task(taskAction);
     tasks.Enqueue(result);
     var a = new AsyncMutex();
 }
예제 #2
0
 public AsyncMutexLockObject(AsyncMutex asyncMutex)
 {
     this.asyncMutex = asyncMutex;
 }