| org.jpox.store.query.QueryResult
QueryResult | public interface QueryResult extends Collection(Code) | | Lazy collection results from a Query. The actual result elements are only loaded when accessed.
The lifecycle of a QueryResult is as follows
- Open, Connected, With Connection - the query has been run and the results returned.
- Open, Disconnected - the query has been run, and the txn committed, and the PM closed so has its results
internally
- Closed, Disconnected - the query has been run, txn committed, query results closed.
version: $Revision: 1.13 $ |
Method Summary | |
void | close() Method to close the results, making them unusable thereafter. | void | disconnect() Method to disconnect the results from the ObjectManager, meaning that thereafter it just behaves
like a List. |
close | void close()(Code) | | Method to close the results, making them unusable thereafter.
|
disconnect | void disconnect()(Code) | | Method to disconnect the results from the ObjectManager, meaning that thereafter it just behaves
like a List.
|
|
|