mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
61 lines
1.8 KiB
Java
61 lines
1.8 KiB
Java
package com.avaje.ebeaninternal.api;
|
|
|
|
import com.avaje.ebean.bean.BeanCollection;
|
|
import com.avaje.ebean.bean.EntityBeanIntercept;
|
|
import com.avaje.ebean.bean.ObjectGraphNode;
|
|
import com.avaje.ebean.bean.PersistenceContext;
|
|
import com.avaje.ebeaninternal.server.core.OrmQueryRequest;
|
|
|
|
/**
|
|
* Controls the loading of reference objects for a query instance.
|
|
*/
|
|
public interface LoadContext {
|
|
|
|
/**
|
|
* Return the minimum batch size when using QueryIterator with query joins.
|
|
*/
|
|
public int getSecondaryQueriesMinBatchSize(OrmQueryRequest<?> parentRequest, int defaultQueryBatch);
|
|
|
|
/**
|
|
* Execute any secondary (+query) queries if there are any defined.
|
|
* @param parentRequest the originating query request
|
|
*/
|
|
public void executeSecondaryQueries(OrmQueryRequest<?> parentRequest, int defaultQueryBatch);
|
|
|
|
/**
|
|
* Register any secondary queries (+query or +lazy) with their
|
|
* appropriate LoadBeanContext or LoadManyContext.
|
|
* <p>
|
|
* This is so the LoadBeanContext or LoadManyContext use the
|
|
* defined query for +query and +lazy execution.
|
|
* </p>
|
|
*/
|
|
public void registerSecondaryQueries(SpiQuery<?> query);
|
|
|
|
/**
|
|
* Return the node for a given path which is used by autofetch profiling.
|
|
*/
|
|
public ObjectGraphNode getObjectGraphNode(String path);
|
|
|
|
/**
|
|
* Return the persistence context used by this query and future lazy loading.
|
|
*/
|
|
public PersistenceContext getPersistenceContext();
|
|
|
|
/**
|
|
* Set the persistence context used by this query and future lazy loading.
|
|
*/
|
|
public void setPersistenceContext(PersistenceContext persistenceContext);
|
|
|
|
/**
|
|
* Register a Bean for lazy loading.
|
|
*/
|
|
public void register(String path, EntityBeanIntercept ebi);
|
|
|
|
/**
|
|
* Register a collection for lazy loading.
|
|
*/
|
|
public void register(String path, BeanCollection<?> bc);
|
|
|
|
}
|