001package com.avaje.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 * @author rbygrave
013 */
014public interface FutureRowCount<T> extends Future<Integer> {
015}