Created
December 6, 2018 00:27
-
-
Save nest-don/6e6bd680947d062669557841b2972919 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
[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