com.addthis.hydra.data.query.Query.getQueryPaths()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(260)

本文整理了Java中com.addthis.hydra.data.query.Query.getQueryPaths方法的一些代码示例,展示了Query.getQueryPaths的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getQueryPaths方法的具体详情如下:
包路径:com.addthis.hydra.data.query.Query
类名称:Query
方法名:getQueryPaths

Query.getQueryPaths介绍

暂无

代码示例

代码示例来源:origin: addthis/hydra

  1. /**
  2. * Performs a query search, writes the results to a data channel. This function does not break the execution of the
  3. * query if the client channel gets closed.
  4. *
  5. * @param query A Query object that contains the path or paths of the root query.
  6. * @param result A DataChannelOutput to which the result will be written. In practice, this will be the head of
  7. * a QueryOpProcessor that represents the first operator in a query, which in turn sends its output
  8. * to another QueryOpProcessor and the last will send its output to a DataChannelOutput sending bytes
  9. * back to meshy, usually defined at the MQSource side of code.
  10. * @param queryPromise A wrapper for a boolean flag that gets set to true by MQSource in case the user
  11. * cancels the query at the MQMaster side.
  12. */
  13. public void search(Query query, DataChannelOutput result,
  14. ChannelProgressivePromise queryPromise) throws QueryException {
  15. for (QueryElement[] path : query.getQueryPaths()) {
  16. if (!(queryPromise.isDone())) {
  17. search(path, result, queryPromise);
  18. }
  19. }
  20. }

代码示例来源:origin: addthis/hydra

  1. @Test
  2. public void testCompact() {
  3. String path = "+:+hits,+nodes$+foo=123/+/++123/+%top=hit/a,b,c/|foo/|+bar/*/+%goo/(1-5)+";
  4. Query q = new Query("job", new String[] { path }, null);
  5. Assert.assertEquals(path, q.getPathString(q.getQueryPaths().get(0)));
  6. }

相关文章