Exemplo n.º 1
0
 public Releaser(AsyncSemaphore semaphore)
 {
     this.semaphore = semaphore;
 }
Exemplo n.º 2
0
 public TaskThrottler(int maxConcurrencyLevel)
 {
     semaphore = new AsyncSemaphore(maxConcurrencyLevel);
 }
Exemplo n.º 3
0
 public ThrottleState(AsyncSemaphore semaphore)
 {
     this.semaphore = semaphore;
 }