Package org.nuxeo.ecm.core.api
Interface IterableQueryResult
- All Superinterfaces:
AutoCloseable,Closeable,Iterable<Map<String,Serializable>>
- All Known Implementing Classes:
CMISQLtoNXQL.NXQLtoCMISIterableQueryResult,DBSSession.DBSQueryResult,IterableQueryResultImpl,ResultSetQueryResult
An iterable query result based on a cursor.
The close() method MUST be called when the query result is no more needed, otherwise underlying resources
will be leaked. There is no auto-closing at the end of the iteration.
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Closes the query result and releases the underlying resources held by the cursor.booleanIndicates if the query result must be closed (because it holds resources).longpos()Gets the current position in the iterator.longsize()Gets the total size of the query result.voidskipTo(long pos) Skips to a given position in the iterator.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
close
void close()Closes the query result and releases the underlying resources held by the cursor.This MUST be called when the query result is no more needed, otherwise underlying resources will be leaked. There is no auto-closing at the end of the iteration.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
mustBeClosed
boolean mustBeClosed()Indicates if the query result must be closed (because it holds resources).- Returns:
trueif the query result must be closed,falseotherwise- Since:
- 8.1
-
size
long size()Gets the total size of the query result.Note that this may be costly, and that some backends may not be able to do this operation, in which case
-1will be returned.- Returns:
- the size, or
-1for an unknown size
-
pos
long pos()Gets the current position in the iterator.Positions start at
0.- Returns:
- the position
-
skipTo
void skipTo(long pos) Skips to a given position in the iterator.Positions start at
0.
-