All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.FutureIds Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
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