| 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.findEach(DocQueryRequest<T> query,
QueryEachConsumer<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.findEach(Query<T> query,
QueryEachConsumer<T> consumer,
Transaction transaction)
Execute the query visiting the each bean one at a time.
|
void |
SqlQuery.findEach(QueryEachConsumer<SqlRow> consumer)
Execute the SqlQuery iterating a row at a time.
|
void |
Model.Find.findEach(QueryEachConsumer<T> consumer)
Execute the query consuming each bean one at a time.
|
void |
Query.findEach(QueryEachConsumer<T> consumer)
Execute the query processing the beans one at a time.
|
void |
ExpressionList.findEach(QueryEachConsumer<T> consumer)
Execute the query process the beans one at a time.
|
void |
EbeanServer.findEach(SqlQuery query,
QueryEachConsumer<SqlRow> consumer,
Transaction transaction)
Execute the SqlQuery iterating a row at a time.
|
| Modifier and Type | Method and Description |
|---|---|
<T> void |
NoneDocStore.findEach(DocQueryRequest<T> query,
QueryEachConsumer<T> consumer) |
Copyright © 2016. All rights reserved.