Created
December 6, 2018 00:28
-
-
Save nest-don/0ef04deee8bfa08dead9f48ddafc793e 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 string QueryService(string text, string service) | |
{ | |
Inkton.Nest.Model.Nest searchNest = _runtime.GetNest(service); | |
SearchQuery query = new SearchQuery(); | |
query.Id = _runtime.ComponentId + "." + DateTime.Now.Ticks.ToString(); | |
query.Service = service; | |
query.MaxResults = 100; | |
query.Text = text; | |
_runtime.Send(query, searchNest, typeof(SearchQuery), query.Id); | |
return _runtime.QueueClient.LastCorrelationId; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment