10 references to IsBounded
System.Threading.Tasks.Dataflow (10)
Blocks\ActionBlock.cs (1)
150if (_defaultTarget.IsBounded) _defaultTarget.ChangeBoundingCount(-1);
Blocks\TransformBlock.cs (1)
276bool isBounded = _target.IsBounded;
Blocks\TransformManyBlock.cs (5)
333else if (_target.IsBounded) 355bool isBounded = target.IsBounded; 440if (_target.IsBounded) UpdateBoundingCountWithOutputCount(count: ((ICollection<TOutput>)outputItems).Count); 473if (_target.IsBounded) 538Debug.Assert(_target.IsBounded, "Expected to be in bounding mode.");
Blocks\TransformManyBlock.IAsyncEnumerable.cs (3)
105else if (_target.IsBounded) 127bool isBounded = target.IsBounded; 209if (_target.IsBounded)