本文整理了Java中org.jooq.Query.cancel
方法的一些代码示例,展示了Query.cancel
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.cancel
方法的具体详情如下:
包路径:org.jooq.Query
类名称:Query
方法名:cancel
[英]Cancel the underlying statement.
This cancels the query's underlying Statement or PreparedStatement. If there is no underlying open and running statement, this call is simply ignored.
[中]取消基础语句。
这将取消查询的基础语句或PreparedStatement。如果没有底层的open和running语句,那么这个调用就会被忽略。
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
@Override
public final void cancel() {
delegate.cancel();
}
代码示例来源:origin: org.jooq/jooq
@Override
public final void cancel() {
delegate.cancel();
}
内容来源于网络,如有侵权,请联系作者删除!