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