BatchedJoinBlock<T1,T2> Constructeurs

Définition

Surcharges

Nom Description
BatchedJoinBlock<T1,T2>(Int32)

Initialise une nouvelle BatchedJoinBlock<T1,T2> configuration avec la configuration spécifiée.

BatchedJoinBlock<T1,T2>(Int32, GroupingDataflowBlockOptions)

Initialise une nouvelle BatchedJoinBlock<T1,T2> configuration avec la configuration spécifiée.

BatchedJoinBlock<T1,T2>(Int32)

Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs

Initialise une nouvelle BatchedJoinBlock<T1,T2> configuration 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 dans un lot.

Exceptions

Le batchSize doit être positif.

S’applique à

BatchedJoinBlock<T1,T2>(Int32, GroupingDataflowBlockOptions)

Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs
Source:
BatchedJoinBlock.cs

Initialise une nouvelle BatchedJoinBlock<T1,T2> configuration 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 dans un lot.

dataflowBlockOptions
GroupingDataflowBlockOptions

Options avec lesquelles configurer ce BatchedJoinBlock<T1,T2>.

Exceptions

dataflowBlockOptions a la valeur null.

batchSize est inférieur à un.

S’applique à