io.druid.segment.QueryableIndex.close()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(0.6k)|赞(0)|评价(0)|浏览(74)

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

QueryableIndex.close介绍

[英]The close method shouldn't actually be here as this is nasty. We will adjust it in the future.
[中]封闭方法不应该出现在这里,因为这很糟糕。我们将在未来对其进行调整。

代码示例

代码示例来源:origin: io.druid/druid-processing

@Override
 public void close() throws IOException
 {
  // this is kinda nasty
  index.close();
 }
}

代码示例来源:origin: com.n3twork.druid/druid-processing

@Override
 public void close() throws IOException
 {
  // this is kinda nasty
  index.close();
 }
}

相关文章