io.ebeaninternal.server.query.QueryFutureRowCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.query;
import io.ebean.FutureRowCount;
import io.ebean.Query;
import io.ebean.Transaction;
import java.util.concurrent.FutureTask;
/**
* Future implementation for the row count query.
*/
public class QueryFutureRowCount extends BaseFuture implements FutureRowCount {
private final CallableQueryCount call;
public QueryFutureRowCount(CallableQueryCount call) {
super(new FutureTask<>(call));
this.call = call;
}
public FutureTask getFutureTask() {
return futureTask;
}
public Transaction getTransaction() {
return call.transaction;
}
public Query getQuery() {
return call.query;
}
public boolean cancel(boolean mayInterruptIfRunning) {
call.query.cancel();
return super.cancel(mayInterruptIfRunning);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy