io.ebean.FutureIds Maven / Gradle / Ivy
package io.ebean;
import java.util.List;
import java.util.concurrent.Future;
/**
* FutureIds represents the result of a background query execution for the Id's.
*
* It extends the java.util.concurrent.Future with the ability to get the Id's
* while the query is still executing in the background.
*
*/
public interface FutureIds extends Future> {
/**
* Returns the original query used to fetch the Id's.
*/
Query getQuery();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy