8 references to OutputQueue
System.Threading.Tasks.Dataflow (8)
Blocks\BatchBlock.cs (1)
211public IEnumerable<T[]> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\BatchedJoinBlock.cs (2)
236public IEnumerable<Tuple<IList<T1>, IList<T2>>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } } 494public IEnumerable<Tuple<IList<T1>, IList<T2>, IList<T3>>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\BufferBlock.cs (1)
459public IEnumerable<T> Queue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\JoinBlock.cs (2)
217public IEnumerable<Tuple<T1, T2>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } } 447public IEnumerable<Tuple<T1, T2, T3>> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\TransformBlock.cs (1)
434public IEnumerable<TOutput> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }
Blocks\TransformManyBlock.cs (1)
640public IEnumerable<TOutput> OutputQueue { get { return _sourceDebuggingInformation.OutputQueue; } }