10 references to TryPop
System.Threading.Tasks.Dataflow (10)
Blocks\BatchBlock.cs (2)
809if (!postponed.TryPop(out sourceAndMessage)) break; 923if (!postponed.TryPop(out sourceAndMessage)) break;
Blocks\BroadcastBlock.cs (1)
345if (!_boundingState.PostponedMessages.TryPop(out sourceAndMessage)) return false;
Blocks\BufferBlock.cs (1)
348if (!_boundingState.PostponedMessages.TryPop(out sourceAndMessage)) return false;
Blocks\JoinBlock.cs (3)
624if (!_nonGreedy!.PostponedMessages.TryPop(out next)) return false; 643if (!_nonGreedy.PostponedMessages.TryPop(out next)) return false; 712!boundingCapacityAvailable || !_nonGreedy!.PostponedMessages.TryPop(out next))
Internal\Common.cs (1)
511while (postponedMessages.TryPop(out sourceAndMessage))
Internal\QueuedMap.cs (1)
220if (TryPop(out item)) items[i] = item;
Internal\TargetCore.cs (1)
651if (!_boundingState!.CountIsLessThanBound || !_boundingState.PostponedMessages.TryPop(out element))