Skip to content

Instantly share code, notes, and snippets.

@nest-don
Created December 6, 2018 00:29
Show Gist options
  • Save nest-don/304d7dfccc6da8defe5879bca1dba6b8 to your computer and use it in GitHub Desktop.
Save nest-don/304d7dfccc6da8defe5879bca1dba6b8 to your computer and use it in GitHub Desktop.
private List<SearchResult> CollectResults(Dictionary<string, string> queryServices)
{
List<SearchResult> results = new List<SearchResult>();
int pendingResultsCount = queryServices.Count;
DateTime start = DateTime.Now;
while (pendingResultsCount > 0 && (DateTime.Now - start).TotalSeconds < 10 )
{
var returnedSingle = _runtime.ReceiveSingle<SearchResult>();
if (returnedSingle != null)
{
var result = returnedSingle.Data.Payload;
if (queryServices[result.Service] == _runtime.QueueServer.LastCorrelationId)
{
results.Add(result);
--pendingResultsCount;
}
}
}
return results;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment