BatchedJoinBlock<T1,T2> Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
| BatchedJoinBlock<T1,T2>(Int32) |
Initialise un nouveau BatchedJoinBlock<T1,T2> avec la configuration spécifiée. |
| BatchedJoinBlock<T1,T2>(Int32, GroupingDataflowBlockOptions) |
Initialise un nouveau BatchedJoinBlock<T1,T2> avec la configuration spécifiée. |
BatchedJoinBlock<T1,T2>(Int32)
Initialise un nouveau BatchedJoinBlock<T1,T2> avec la configuration spécifiée.
public:
BatchedJoinBlock(int batchSize);
public BatchedJoinBlock (int batchSize);
new System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2> : int -> System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2>
Public Sub New (batchSize As Integer)
Paramètres
- batchSize
- Int32
Nombre d'éléments à regrouper en un lot.
Exceptions
La batchSize doit être positive.
S’applique à
BatchedJoinBlock<T1,T2>(Int32, GroupingDataflowBlockOptions)
Initialise un nouveau BatchedJoinBlock<T1,T2> avec la configuration spécifiée.
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> : int * System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions -> System.Threading.Tasks.Dataflow.BatchedJoinBlock<'T1, 'T2>
Public Sub New (batchSize As Integer, dataflowBlockOptions As GroupingDataflowBlockOptions)
Paramètres
- batchSize
- Int32
Nombre d'éléments à regrouper en un lot.
- dataflowBlockOptions
- GroupingDataflowBlockOptions
Options permettant de configurer ce BatchedJoinBlock<T1,T2>.
Exceptions
dataflowBlockOptions a la valeur null.
batchSize est inférieur à un.