作業中のWebサイトにランディングページがあり、そのページのアクションが呼び出されると、後で結果をキャッシュするために、いくつかの非同期Web呼び出しが行われます。ただし、私がやりたいのは、呼び出しが完了するのを待ってから、次のアクションに進むことです。基本的に私は持っています:
GetParticipantInfo(planID, partID );
SetCurrentInvestments(partID, planID);
GetLoanFunds(planID, partID);
そしてそれらのそれぞれはこのように分割されます:
public void GetParticipantInfo(string planNumber, string participantID)
{
IAsyncResult _IAsyncResult;
List<string> parameter = new List<string>();
parameter.Add(planNumber);
parameter.Add(participantID);
GetParticipantInfo_A _GetParticipantInfo_A = new GetParticipantInfo_A(GetParticipantInfoAsync);
_IAsyncResult = _GetParticipantInfo_A.BeginInvoke(participantID, planNumber, serviceContext, GetParticipantInfoAsyncCallBack, parameter);
}
public ParticipantDataModel GetParticipantInfoAsync(string planNumber, string partId, ServiceContext esfSC)
{
ParticipantDataModel pdm = new ParticipantDataModel();
return pdm;
}
private void GetParticipantInfoAsyncCallBack(IAsyncResult ar)
{
try
{
AsyncResult result;
result = (AsyncResult)ar;
string planID = ((List<string>)ar.AsyncState)[0];
GetParticipantInfo_A caller = (GetParticipantInfo_A)result.AsyncDelegate;
ParticipantDataModel pdm = caller.EndInvoke(ar);
_cacheManager.SetCache(planID, CacheKeyName.GetPartInfo.ToString(), pdm);
}
catch (Exception ex)
{ }
}
だから問題は、他の何かに移る前に呼び出しが終了するのを待つようにUIスレッドを設定するにはどうすればよいですか?
ジョーへの返答:
さて、それらがすべてasyncresultを返すと仮定すると、次のようなことができますか?
List<IAsyncResult> results;
//After each call
result = OneOfTheAsyncCalls();
results.Add(result);
foreach(IAsyncResult result in results)
{
result.AsyncWaitHandle.WaitOne();
}
それとも順序が重要になるのでしょうか?