package io.ebean;

import java.util.concurrent.Future;

Represents the result of a background query execution for the total row count for a query.

It extends the java.util.concurrent.Future.

Author:rbygrave
Type parameters:
  • <T> – the BeanType
/** * 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> { }