BatchBlock<T> 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
BatchBlock<T>(Int32) |
Initialise un nouveau BatchBlock<T> avec la taille de lot spécifiée. |
BatchBlock<T>(Int32, GroupingDataflowBlockOptions) |
Initialise un nouveau BatchBlock<T> avec la taille de lot, l'option de refus et les options de bloc spécifiées. |
BatchBlock<T>(Int32)
- Source:
- BatchBlock.cs
- Source:
- BatchBlock.cs
- Source:
- BatchBlock.cs
Initialise un nouveau BatchBlock<T> avec la taille de lot spécifiée.
public:
BatchBlock(int batchSize);
public BatchBlock (int batchSize);
new System.Threading.Tasks.Dataflow.BatchBlock<'T> : int -> System.Threading.Tasks.Dataflow.BatchBlock<'T>
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 à
BatchBlock<T>(Int32, GroupingDataflowBlockOptions)
- Source:
- BatchBlock.cs
- Source:
- BatchBlock.cs
- Source:
- BatchBlock.cs
Initialise un nouveau BatchBlock<T> avec la taille de lot, l'option de refus et les options de bloc spécifiées.
public:
BatchBlock(int batchSize, System::Threading::Tasks::Dataflow::GroupingDataflowBlockOptions ^ dataflowBlockOptions);
public BatchBlock (int batchSize, System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.BatchBlock<'T> : int * System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions -> System.Threading.Tasks.Dataflow.BatchBlock<'T>
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 BatchBlock<T>.
Exceptions
La batchSize
doit être positive.
- ou -
La batchSize
doit être inférieure à la valeur de l'option BoundedCapacity si une valeur autre que la valeur par défaut a été définie.
dataflowBlockOptions
a la valeur null
.