BatchedJoinBlock<T1,T2,T3> Construtores
Definição
Sobrecargas
| BatchedJoinBlock<T1,T2,T3>(Int32) |
Inicializa um novo BatchedJoinBlock<T1,T2,T3> com a configuração especificada.Initializes a new BatchedJoinBlock<T1,T2,T3> with the specified configuration. |
| BatchedJoinBlock<T1,T2,T3>(Int32, GroupingDataflowBlockOptions) |
Inicializa um novo BatchedJoinBlock<T1,T2,T3> com a configuração especificada.Initializes a new BatchedJoinBlock<T1,T2,T3> with the specified configuration. |
BatchedJoinBlock<T1,T2,T3>(Int32)
Inicializa um novo BatchedJoinBlock<T1,T2,T3> com a configuração especificada.Initializes a new BatchedJoinBlock<T1,T2,T3> with the specified configuration.
public:
BatchedJoinBlock(int batchSize);
public BatchedJoinBlock (int batchSize);
new System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2, 'T3> : int -> System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2, 'T3>
Public Sub New (batchSize As Integer)
Parâmetros
- batchSize
- Int32
O número de itens a serem agrupados em um lote.The number of items to group into a batch.
Exceções
O batchSize deve ser positivo.The batchSize must be positive.
Aplica-se a
BatchedJoinBlock<T1,T2,T3>(Int32, GroupingDataflowBlockOptions)
Inicializa um novo BatchedJoinBlock<T1,T2,T3> com a configuração especificada.Initializes a new BatchedJoinBlock<T1,T2,T3> with the specified configuration.
public:
BatchedJoinBlock(int batchSize, System::Threading::Tasks::Dataflow::GroupingDataflowBlockOptions ^ dataflowBlockOptions);
public BatchedJoinBlock (int batchSize, System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2, 'T3> : int * System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions -> System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2, 'T3>
Public Sub New (batchSize As Integer, dataflowBlockOptions As GroupingDataflowBlockOptions)
Parâmetros
- batchSize
- Int32
O número de itens a serem agrupados em um lote.The number of items to group into a batch.
- dataflowBlockOptions
- GroupingDataflowBlockOptions
As opções com as quais este BatchedJoinBlock<T1,T2> será configurado.The options with which to configure this BatchedJoinBlock<T1,T2>.
Exceções
O batchSize deve ser positivo.The batchSize must be positive.
O dataflowBlockOptions é null.The dataflowBlockOptions is null.