8 references to TryReceiveAll
System.Threading.Tasks.Dataflow (8)
Blocks\BatchBlock.cs (1)
133
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); }
390
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<IList<T1>, IList<T2>, IList<T3>>>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\BufferBlock.cs (1)
189
public bool TryReceiveAll([NotNullWhen(true)] out IList<T>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\JoinBlock.cs (2)
122
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<T1, T2>>? items) { return _source.
TryReceiveAll
(out items); }
341
public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<T1, T2, T3>>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\TransformBlock.cs (1)
353
public bool TryReceiveAll([NotNullWhen(true)] out IList<TOutput>? items) { return _source.
TryReceiveAll
(out items); }
Blocks\TransformManyBlock.cs (1)
562
public bool TryReceiveAll([NotNullWhen(true)] out IList<TOutput>? items) { return _source.
TryReceiveAll
(out items); }