8 references to TryReceiveAll
System.Threading.Tasks.Dataflow (8)
Blocks\BatchBlock.cs (1)
136
public bool TryReceiveAll([NotNullWhen(true)] out IList<T[]>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\BatchedJoinBlock.cs (2)
138
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<IList<T1>, IList<T2>>>? items) { return _source.
TryReceiveAll
(out items); }
393
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<IList<T1>, IList<T2>, IList<T3>>>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\BufferBlock.cs (1)
195
public bool TryReceiveAll([NotNullWhen(true)] out IList<T>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\JoinBlock.cs (2)
125
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<T1, T2>>? items) { return _source.
TryReceiveAll
(out items); }
350
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<T1, T2, T3>>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\TransformBlock.cs (1)
359
public bool TryReceiveAll([NotNullWhen(true)] out IList<TOutput>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\TransformManyBlock.cs (1)
565
public bool TryReceiveAll([NotNullWhen(true)] out IList<TOutput>? items) { return _source.
TryReceiveAll
(out items); }