org.jooq.Query.cancel()方法的使用及代码示例

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

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

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();
}

相关文章