mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
17 lines
336 B
Java
17 lines
336 B
Java
package io.ebean;
|
|
|
|
import java.util.concurrent.Future;
|
|
|
|
/**
|
|
* Represents the result of a background query execution for the total row count
|
|
* for a query.
|
|
* <p>
|
|
* It extends the java.util.concurrent.Future.
|
|
* </p>
|
|
*
|
|
* @param <T> the BeanType
|
|
* @author rbygrave
|
|
*/
|
|
public interface FutureRowCount<T> extends Future<Integer> {
|
|
}
|