9 references to CountdownEvent
System.Core (7)
System\Linq\Parallel\Partitioning\OrderedHashRepartitionStream.cs (1)
31CountdownEvent barrier = new CountdownEvent(inputStream.PartitionCount);
System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs (1)
37CountdownEvent barrier = new CountdownEvent(inputStream.PartitionCount);
System\Linq\Parallel\QueryOperators\Unary\DefaultIfEmptyQueryOperator.cs (1)
68CountdownEvent sharedLatch = new CountdownEvent(partitionCount - 1);
System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs (1)
82CountdownEvent sharedBarrier = new CountdownEvent(partitionCount);
System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs (1)
82CountdownEvent sharedBarrier = new CountdownEvent(partitionCount);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
113CountdownEvent sharredBarrier = new CountdownEvent(partitionCount); // a barrier to synchronize before yielding
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (1)
140CountdownEvent sharedBarrier = new CountdownEvent(partitionCount);
System.Web (2)
Hosting\SuspendManager.cs (1)
55CountdownEvent countdownEvent = new CountdownEvent(2);
httpserverutility.cs (1)
579using (CountdownEvent countdownEvent = new CountdownEvent(1)) {