| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see EbeanServer and Ebean).
|
| com.avaje.ebeanservice.docstore.none |
"No op" implementation of document store.
|
| Modifier and Type | Method and Description |
|---|---|
<T> void |
DocumentStore.findEachWhile(DocQueryRequest<T> query,
QueryEachWhileConsumer<T> consumer)
Execute the query against the document store with the expectation of a large set of results
that are processed in a scrolling resultSet fashion.
|
<T> void |
EbeanServer.findEachWhile(Query<T> query,
QueryEachWhileConsumer<T> consumer,
Transaction transaction)
Execute the query visiting the each bean one at a time.
|
void |
SqlQuery.findEachWhile(QueryEachWhileConsumer<SqlRow> consumer)
Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through.
|
void |
Model.Find.findEachWhile(QueryEachWhileConsumer<T> consumer)
Execute the query consuming each bean one at a time.
|
void |
Query.findEachWhile(QueryEachWhileConsumer<T> consumer)
Execute the query using callbacks to a visitor to process the resulting
beans one at a time.
|
void |
ExpressionList.findEachWhile(QueryEachWhileConsumer<T> consumer)
Execute the query processing the beans one at a time with the ability to
stop processing before reading all the beans.
|
void |
EbeanServer.findEachWhile(SqlQuery query,
QueryEachWhileConsumer<SqlRow> consumer,
Transaction transaction)
Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through.
|
| Modifier and Type | Method and Description |
|---|---|
<T> void |
NoneDocStore.findEachWhile(DocQueryRequest<T> query,
QueryEachWhileConsumer<T> consumer) |
Copyright © 2016. All rights reserved.