예제 #1
0
 public Releaser(AsyncSemaphore semaphore)
 {
     this.semaphore = semaphore;
 }
예제 #2
0
 public TaskThrottler(int maxConcurrencyLevel)
 {
     semaphore = new AsyncSemaphore(maxConcurrencyLevel);
 }
예제 #3
0
 public ThrottleState(AsyncSemaphore semaphore)
 {
     this.semaphore = semaphore;
 }