Interface IDataReader
×News: OpenXava 7.7 released - March 9 · Read more
- All Known Subinterfaces:
IEntityTabImpl, ITabProvider
- All Known Implementing Classes:
EntityTab, JPATabProvider, TabProviderBase
public interface IDataReader
Read data by chunks.
- Author:
- Javier Paniza
-
Method Summary
Modifier and TypeMethodDescriptionintRecord (or object, or row) count of last consult.Obtain the next data chunk.voidreset()If you call this method the next time that you callnextChunk()you will obtain the first chunk and fresh data from db.
-
Method Details
-
nextChunk
Obtain the next data chunk.This method can be call from a
TableModelto obtain data on demand.- Throws:
RemoteException
-
getResultSize
Record (or object, or row) count of last consult.- Throws:
RemoteException
-
reset
If you call this method the next time that you callnextChunk()you will obtain the first chunk and fresh data from db.- Throws:
RemoteException
-