Thanks for replying. I ended up using a decorator pattern to implement paging. Let's say I have the following:
BaseServiceInterface
BaseServiceImpl implements BaseServiceInterface (this contains...
Type: Posts; User: amitabh_a; Keyword(s):
Thanks for replying. I ended up using a decorator pattern to implement paging. Let's say I have the following:
BaseServiceInterface
BaseServiceImpl implements BaseServiceInterface (this contains...
I have a method that calls Oracle db to return a subset of data - for example row 41-51 of a list of users. everytime I click next, the class calls oracle with for the next ten users. Basically...