2 instantiations of GroupingDataflowBlockOptions
System.Threading.Tasks.Dataflow (2)
Base\DataflowBlockOptions.cs (2)
388internal static new readonly GroupingDataflowBlockOptions Default = new GroupingDataflowBlockOptions(); 396new GroupingDataflowBlockOptions
32 references to GroupingDataflowBlockOptions
System.Threading.Tasks.Dataflow (32)
Base\DataflowBlockOptions.cs (6)
337/// <see cref="GroupingDataflowBlockOptions"/> is mutable and can be configured through its properties. 378/// to the provided <see cref="GroupingDataflowBlockOptions"/> instance should not affect the behavior 388internal static new readonly GroupingDataflowBlockOptions Default = new GroupingDataflowBlockOptions(); 390/// <summary>Returns this <see cref="GroupingDataflowBlockOptions"/> instance if it's the default instance or else a cloned instance.</summary> 392internal new GroupingDataflowBlockOptions DefaultOrClone() 414/// <summary>Initializes the <see cref="GroupingDataflowBlockOptions"/>.</summary>
Blocks\BatchBlock.cs (6)
37this(batchSize, GroupingDataflowBlockOptions.Default) 46public BatchBlock(int batchSize, GroupingDataflowBlockOptions dataflowBlockOptions) 221public GroupingDataflowBlockOptions DataflowBlockOptions { get { return _targetDebuggingInformation.DataflowBlockOptions; } } 260private readonly GroupingDataflowBlockOptions _dataflowBlockOptions; 307internal BatchBlockTargetCore(BatchBlock<T> owningBatch, int batchSize, Action<T[]> batchCompletedAction, GroupingDataflowBlockOptions dataflowBlockOptions) 1188public GroupingDataflowBlockOptions DataflowBlockOptions { get { return _target._dataflowBlockOptions; } }
Blocks\BatchedJoinBlock.cs (9)
46this(batchSize, GroupingDataflowBlockOptions.Default) 54public BatchedJoinBlock(int batchSize, GroupingDataflowBlockOptions dataflowBlockOptions) 253public GroupingDataflowBlockOptions DataflowBlockOptions { get { return (GroupingDataflowBlockOptions)_sourceDebuggingInformation.DataflowBlockOptions; } } 294this(batchSize, GroupingDataflowBlockOptions.Default) 302public BatchedJoinBlock(int batchSize, GroupingDataflowBlockOptions dataflowBlockOptions) 513public GroupingDataflowBlockOptions DataflowBlockOptions { get { return (GroupingDataflowBlockOptions)_sourceDebuggingInformation.DataflowBlockOptions; } } 681int batchSize, GroupingDataflowBlockOptions dataflowBlockOptions,
Blocks\JoinBlock.cs (11)
44this(GroupingDataflowBlockOptions.Default) 50public JoinBlock(GroupingDataflowBlockOptions dataflowBlockOptions) 227public GroupingDataflowBlockOptions DataflowBlockOptions { get { return (GroupingDataflowBlockOptions)_sourceDebuggingInformation.DataflowBlockOptions; } } 271this(GroupingDataflowBlockOptions.Default) 277public JoinBlock(GroupingDataflowBlockOptions dataflowBlockOptions) 457public GroupingDataflowBlockOptions DataflowBlockOptions { get { return (GroupingDataflowBlockOptions)_sourceDebuggingInformation.DataflowBlockOptions; } } 517GroupingDataflowBlockOptions dbo = sharedResources._dataflowBlockOptions; 1041GroupingDataflowBlockOptions dataflowBlockOptions) 1069internal readonly GroupingDataflowBlockOptions _dataflowBlockOptions;