WorkflowInvoker.EndInvoke(IAsyncResult) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
BeginInvoke オーバーロードのいずれかを使用して呼び出されたワークフローの結果を返します。
public:
System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ EndInvoke(IAsyncResult ^ result);
public System.Collections.Generic.IDictionary<string,object> EndInvoke (IAsyncResult result);
member this.EndInvoke : IAsyncResult -> System.Collections.Generic.IDictionary<string, obj>
Public Function EndInvoke (result As IAsyncResult) As IDictionary(Of String, Object)
パラメーター
- result
- IAsyncResult
ワークフローを開始した IAsyncResult 操作を参照する BeginInvoke。
戻り値
引数名によってキー指定されるルート アクティビティの OutArgument 値および InOutArgument 値のディクショナリ。これらの値は、ワークフローの出力を表します。
例
次の例は、LongRunningDiceRoll
アクティビティで構成されるワークフローを呼び出します。 LongRunningDiceRoll
アクティビティには、サイコロ振り操作の結果を表す 2 つの出力引数があります。 これらは EndInvoke を呼び出すことによって取得されます。 EndInvoke への呼び出しが返されると、引数名によってキー指定された各出力引数が出力ディレクトリに返されます。
public sealed class LongRunningDiceRoll : Activity
{
public OutArgument<int> D1 { get; set; }
public OutArgument<int> D2 { get; set; }
public LongRunningDiceRoll()
{
this.Implementation = () => new Sequence
{
Activities =
{
new WriteLine
{
Text = "Rolling the dice for 5 seconds."
},
new Delay
{
Duration = TimeSpan.FromSeconds(5)
},
new DiceRoll
{
D1 = new OutArgument<int>(env => this.D1.Get(env)),
D2 = new OutArgument<int>(env => this.D2.Get(env))
}
}
};
}
}
static void BeginInvokeExample()
{
WorkflowInvoker invoker = new WorkflowInvoker(new LongRunningDiceRoll());
string userState = "BeginInvoke example";
IAsyncResult result = invoker.BeginInvoke(new AsyncCallback(WorkflowCompletedCallback), userState);
// You can inspect result from the host to determine if the workflow
// is complete.
Console.WriteLine("result.IsCompleted: {0}", result.IsCompleted);
// The results of the workflow are retrieved by calling EndInvoke, which
// can be called from the callback or from the host. If called from the
// host, it blocks until the workflow completes. If a callback is not
// required, pass null for the callback parameter.
Console.WriteLine("Waiting for the workflow to complete.");
IDictionary<string, object> outputs = invoker.EndInvoke(result);
Console.WriteLine("The two dice are {0} and {1}.",
outputs["D1"], outputs["D2"]);
}
static void WorkflowCompletedCallback(IAsyncResult result)
{
Console.WriteLine("Workflow complete.");
}
注釈
ワークフローが完了したら通知を受け、ワークフローの出力パラメーターを取得できるようにするには、EndInvoke によって指定されるcallback
メソッドから BeginInvoke を呼び出します。 EndInvoke は、呼び出されたときにワークフローが完了していなかった場合、ワークフローが完了するまでブロックします。
このメソッドは、IAsyncResult 非同期デザイン パターンを使用して非同期的に呼び出されるワークフローの結果を返します。 詳細については、「 非同期プログラミングの概要」を参照してください。
適用対象
.NET