ActionBlock<TInput> コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ActionBlock<TInput>(Action<TInput>) |
指定したアクションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。 |
ActionBlock<TInput>(Func<TInput,Task>) |
指定したアクションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。 |
ActionBlock<TInput>(Action<TInput>, ExecutionDataflowBlockOptions) |
指定したアクションと構成オプションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。 |
ActionBlock<TInput>(Func<TInput,Task>, ExecutionDataflowBlockOptions) |
指定したアクションと構成オプションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。 |
ActionBlock<TInput>(Action<TInput>)
指定したアクションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。
public:
ActionBlock(Action<TInput> ^ action);
public ActionBlock (Action<TInput> action);
new System.Threading.Tasks.Dataflow.ActionBlock<'Input> : Action<'Input> -> System.Threading.Tasks.Dataflow.ActionBlock<'Input>
Public Sub New (action As Action(Of TInput))
パラメーター
- action
- Action<TInput>
受信した各データ要素で呼び出す操作。
例外
action
が null
です。
適用対象
ActionBlock<TInput>(Func<TInput,Task>)
指定したアクションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。
public:
ActionBlock(Func<TInput, System::Threading::Tasks::Task ^> ^ action);
public ActionBlock (Func<TInput,System.Threading.Tasks.Task> action);
new System.Threading.Tasks.Dataflow.ActionBlock<'Input> : Func<'Input, System.Threading.Tasks.Task> -> System.Threading.Tasks.Dataflow.ActionBlock<'Input>
Public Sub New (action As Func(Of TInput, Task))
パラメーター
例外
action
が null
です。
適用対象
ActionBlock<TInput>(Action<TInput>, ExecutionDataflowBlockOptions)
指定したアクションと構成オプションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。
public:
ActionBlock(Action<TInput> ^ action, System::Threading::Tasks::Dataflow::ExecutionDataflowBlockOptions ^ dataflowBlockOptions);
public ActionBlock (Action<TInput> action, System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.ActionBlock<'Input> : Action<'Input> * System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions -> System.Threading.Tasks.Dataflow.ActionBlock<'Input>
Public Sub New (action As Action(Of TInput), dataflowBlockOptions As ExecutionDataflowBlockOptions)
パラメーター
- action
- Action<TInput>
受信した各データ要素で呼び出す操作。
- dataflowBlockOptions
- ExecutionDataflowBlockOptions
この ActionBlock<TInput> の構成に使用するオプション。
例外
例
次の例は、コンストラクターを使用 ActionBlock<TInput>(Action<TInput>, ExecutionDataflowBlockOptions) して新しい ActionBlock<TInput> オブジェクトを作成する方法を示しています。 このコード例は、「 方法: データフロー ブロックで並列処理の次数を指定する」トピックで提供 されるより大きな例の一部です。
// Performs several computations by using dataflow and returns the elapsed
// time required to perform the computations.
static TimeSpan TimeDataflowComputations(int maxDegreeOfParallelism,
int messageCount)
{
// Create an ActionBlock<int> that performs some work.
var workerBlock = new ActionBlock<int>(
// Simulate work by suspending the current thread.
millisecondsTimeout => Thread.Sleep(millisecondsTimeout),
// Specify a maximum degree of parallelism.
new ExecutionDataflowBlockOptions
{
MaxDegreeOfParallelism = maxDegreeOfParallelism
});
// Compute the time that it takes for several messages to
// flow through the dataflow block.
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
for (int i = 0; i < messageCount; i++)
{
workerBlock.Post(1000);
}
workerBlock.Complete();
// Wait for all messages to propagate through the network.
workerBlock.Completion.Wait();
// Stop the timer and return the elapsed number of milliseconds.
stopwatch.Stop();
return stopwatch.Elapsed;
}
' Demonstrates how to specify the maximum degree of parallelism
' when using dataflow.
Friend Class Program
' Performs several computations by using dataflow and returns the elapsed
' time required to perform the computations.
Private Shared Function TimeDataflowComputations(ByVal maxDegreeOfParallelism As Integer, ByVal messageCount As Integer) As TimeSpan
' Create an ActionBlock<int> that performs some work.
Dim workerBlock = New ActionBlock(Of Integer)(Function(millisecondsTimeout) Pause(millisecondsTimeout), New ExecutionDataflowBlockOptions() With { .MaxDegreeOfParallelism = maxDegreeOfParallelism})
' Simulate work by suspending the current thread.
' Specify a maximum degree of parallelism.
' Compute the time that it takes for several messages to
' flow through the dataflow block.
Dim stopwatch As New Stopwatch()
stopwatch.Start()
For i As Integer = 0 To messageCount - 1
workerBlock.Post(1000)
Next i
workerBlock.Complete()
' Wait for all messages to propagate through the network.
workerBlock.Completion.Wait()
' Stop the timer and return the elapsed number of milliseconds.
stopwatch.Stop()
Return stopwatch.Elapsed
End Function
Private Shared Function Pause(ByVal obj As Object)
Thread.Sleep(obj)
Return Nothing
End Function
適用対象
ActionBlock<TInput>(Func<TInput,Task>, ExecutionDataflowBlockOptions)
指定したアクションと構成オプションを使用して、ActionBlock<TInput> クラスの新しいインスタンスを初期化します。
public:
ActionBlock(Func<TInput, System::Threading::Tasks::Task ^> ^ action, System::Threading::Tasks::Dataflow::ExecutionDataflowBlockOptions ^ dataflowBlockOptions);
public ActionBlock (Func<TInput,System.Threading.Tasks.Task> action, System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.ActionBlock<'Input> : Func<'Input, System.Threading.Tasks.Task> * System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions -> System.Threading.Tasks.Dataflow.ActionBlock<'Input>
Public Sub New (action As Func(Of TInput, Task), dataflowBlockOptions As ExecutionDataflowBlockOptions)
パラメーター
- dataflowBlockOptions
- ExecutionDataflowBlockOptions
この ActionBlock<TInput> の構成に使用するオプション。