8 references to OutputQueue
System.Threading.Tasks.Dataflow (8)
Blocks\BatchBlock.cs (1)
208public IEnumerable<T[]> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\BatchedJoinBlock.cs (2)
233public IEnumerable<Tuple<IList<T1>, IList<T2>>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } } 488public IEnumerable<Tuple<IList<T1>, IList<T2>, IList<T3>>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\BufferBlock.cs (1)
453public IEnumerable<T> Queue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\JoinBlock.cs (2)
211public IEnumerable<Tuple<T1, T2>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } } 435public IEnumerable<Tuple<T1, T2, T3>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\TransformBlock.cs (1)
428public IEnumerable<TOutput> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\TransformManyBlock.cs (1)
637public IEnumerable<TOutput> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }