mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
42 lines
983 B
Java
42 lines
983 B
Java
package com.avaje.ebean;
|
|
|
|
/**
|
|
* Used to process a query result one bean at a time via a callback to this
|
|
* visitor.
|
|
* <p>
|
|
* If you wish to stop further processing return false from the accept method.
|
|
* </p>
|
|
* <p>
|
|
* Unlike findList() and findSet() using a QueryResultVisitor does not require
|
|
* all the beans in the query result to be held in memory at once. This makes
|
|
* QueryResultVisitor useful for processing large queries.
|
|
* </p>
|
|
*
|
|
* <pre>{@code
|
|
*
|
|
* Query<Customer> query = server.find(Customer.class)
|
|
* .where().eq("status", Status.NEW)
|
|
* .order().asc("id");
|
|
*
|
|
* query.findEach((Customer customer) -> {
|
|
*
|
|
* // do something with customer
|
|
* System.out.println("-- visit " + customer);
|
|
* });
|
|
*
|
|
* }</pre>
|
|
*
|
|
* @param <T>
|
|
* the type of entity bean being queried.
|
|
*/
|
|
public interface QueryEachConsumer<T> {
|
|
|
|
/**
|
|
* Process the bean.
|
|
*
|
|
* @param bean
|
|
* the entity bean to process
|
|
*/
|
|
void accept(T bean);
|
|
}
|