Skip to content

Instantly share code, notes, and snippets.

@nest-don
Created December 6, 2018 00:27
Show Gist options
  • Save nest-don/6e6bd680947d062669557841b2972919 to your computer and use it in GitHub Desktop.
Save nest-don/6e6bd680947d062669557841b2972919 to your computer and use it in GitHub Desktop.
[HttpGet("{text}")]
public IActionResult Get(string text)
{
try
{
// 1. Dispatch search jobs
Dictionary<string, string> queryServices = new Dictionary<string, string>();
foreach (string service in new List<string>() { "github", "bitbucket" })
{
queryServices[service] = QueryService(text, service);
}
// 2. Do other work here ...
// ----------------------
// ----------------------
// 3. Collect the search results
return NestResultMultiple(CollectResults(queryServices));
}
catch (System.Exception e)
{
return StatusCode(500, e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment