001package io.ebean;
002
003import java.util.concurrent.Future;
004
005/**
006 * Represents the result of a background query execution for the total row count
007 * for a query.
008 * <p>
009 * It extends the java.util.concurrent.Future.
010 * </p>
011 *
012 * @param <T> the BeanType
013 * @author rbygrave
014 */
015public interface FutureRowCount<T> extends Future<Integer> {
016}