001    package railo.runtime.search;
002    
003    public interface IndexResult {
004            
005            /**
006             * @return returns how many delets are done
007             */
008            public int getCountDeleted();
009            
010            /**
011             * @return returns how many inserts are done
012             */
013            public int getCountInserted();
014            
015            /**
016             * @return returns how many updates are done
017             */
018            public int getCountUpdated();
019    }