Package io.ebean
Interface CancelableQuery
- All Known Subinterfaces:
DtoQuery<T>,Query<T>,SpiFetchGroupQuery<T>,SqlQuery
public interface CancelableQuery
Defines a cancelable query.
Typically holds a representation of the PreparedStatement to perform the actual cancel.
-
Method Summary
Modifier and Type Method Description voidcancel()Cancel the query.
-
Method Details
-
cancel
void cancel()Cancel the query.For JDBC this translates to calling cancel on the PreparedStatement.
-