本文整理了Java中org.apache.calcite.runtime.Hook.removeThread()
方法的一些代码示例,展示了Hook.removeThread()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Hook.removeThread()
方法的具体详情如下:
包路径:org.apache.calcite.runtime.Hook
类名称:Hook
方法名:removeThread
[英]Removes a thread handler from this Hook.
[中]从此挂钩中删除线程处理程序。
代码示例来源:origin: Qihoo360/Quicksql
/** Adds a handler for this thread. */
public <T> Closeable addThread(final Consumer<T> handler) {
//noinspection unchecked
threadHandlers.get().add((Consumer<Object>) handler);
return () -> removeThread(handler);
}
代码示例来源:origin: org.apache.calcite/calcite-core
/** Adds a handler for this thread. */
public <T> Closeable addThread(final Consumer<T> handler) {
//noinspection unchecked
threadHandlers.get().add((Consumer<Object>) handler);
return () -> removeThread(handler);
}
内容来源于网络,如有侵权,请联系作者删除!