Interface PartialResultExecutor
-
- All Known Implementing Classes:
GoogleDataProtocolAPI.DataProtocolQueryStrategy
public interface PartialResultExecutor
Executable query that will retrieve just specified portion of results (rows). For example to get rows starting at row 10 and retrieves 5 rows (included) use this interface: partialResultExecutor.getResultBatch(10,5)- Author:
- fnguyen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<SheetRow>
getResultsBatch(int startIndex, int amount)
Returns part of the result.
-