Created
December 6, 2018 00:29
-
-
Save nest-don/304d7dfccc6da8defe5879bca1dba6b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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