public class BatchFetchPolicy extends Object implements Serializable, Cloneable
ObjectLevelReadQuery.setBatchFetchPolicy(BatchFetchPolicy)
,
Serialized FormModifier and Type | Field and Description |
---|---|
protected List<Expression> |
attributeExpressions
Define the attributes to be batch fetched.
|
protected List<String> |
attributes
PERF: Cache the local batch read attribute names.
|
protected List<DatabaseMapping> |
batchedMappings
Define the mapping to be batch fetched (from mapping settings).
|
protected Map<Object,Object> |
batchObjects
Stores temporary map of batched objects (this queries results).
|
protected Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> |
dataResults
Stores temporary list of rows from parent batch query per batched mapping.
|
protected Map<DatabaseMapping,ReadQuery> |
mappingQueries
PERF: Used internally to store the prepared mapping queries.
|
protected int |
size
Define the batch size for IN style batch fetching.
|
protected BatchFetchType |
type
Define the type of batch fetching to use.
|
Constructor and Description |
---|
BatchFetchPolicy() |
BatchFetchPolicy(BatchFetchType type) |
Modifier and Type | Method and Description |
---|---|
void |
addDataResults(org.eclipse.persistence.internal.sessions.AbstractRecord row)
INTERNAL:
Add the row to the set of data results.
|
BatchFetchPolicy |
clone() |
List<org.eclipse.persistence.internal.sessions.AbstractRecord> |
getAllDataResults()
INTERNAL:
Return temporary list of rows from parent batch query per batched mapping.
|
List<Expression> |
getAttributeExpressions()
INTERNAL:
Return all attributes specified for batch reading.
|
List<String> |
getAttributes()
INTERNAL:
PERF: Return the cached local (only) batch read attribute names.
|
List<DatabaseMapping> |
getBatchedMappings()
INTERNAL:
Return any mappings that are always batched.
|
Map<Object,Object> |
getBatchObjects()
INTERNAL:
Return temporary map of batched objects.
|
Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> |
getDataResults()
INTERNAL:
Return temporary list of rows from parent batch query per batched mapping.
|
List<org.eclipse.persistence.internal.sessions.AbstractRecord> |
getDataResults(DatabaseMapping mapping)
INTERNAL:
Return the remaining data results for the mapping.
|
Map<DatabaseMapping,ReadQuery> |
getMappingQueries()
INTERNAL:
PERF: Return the internally stored prepared mapping queries.
|
int |
getSize()
Return the batch fetch size.
|
BatchFetchType |
getType()
Return the batch fetch type, (JOIN, IN, EXISTS).
|
boolean |
hasAttributes()
INTERNAL:
Return true is this query has batching
|
boolean |
isAttributeBatchRead(ClassDescriptor mappingDescriptor,
String attributeName)
INTERNAL:
Return if the attribute is specified for batch reading.
|
boolean |
isAttributeBatchRead(String attributeName)
INTERNAL:
Return if the attribute is specified for batch reading.
|
boolean |
isEXISTS()
Return if using the EXISTS fetch type.
|
boolean |
isIN()
Return if using the IN fetch type.
|
boolean |
isJOIN()
Return if using the JOIN fetch type.
|
void |
setAttributeExpressions(List<Expression> attributeExpressions) |
void |
setAttributes(List<String> attributes)
INTERNAL:
PERF: Set the cached local (only) batch read attribute names.
|
void |
setBatchedMappings(List<DatabaseMapping> batchedMappings)
INTERNAL:
Set any mappings that are always batched.
|
void |
setBatchObjects(Map<Object,Object> batchObjects)
INTERNAL:
Set temporary map of batched objects.
|
void |
setDataResults(DatabaseMapping mapping,
List<org.eclipse.persistence.internal.sessions.AbstractRecord> rows)
INTERNAL:
Set the remaining data results for the mapping.
|
void |
setDataResults(List<org.eclipse.persistence.internal.sessions.AbstractRecord> rows)
INTERNAL:
Set the rows to the set of data results for each mapping.
|
void |
setDataResults(Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> dataResults)
INTERNAL:
Set temporary list of rows from parent batch query per batched mapping.
|
void |
setMappingQueries(Map<DatabaseMapping,ReadQuery> mappingQueries)
INTERNAL:
PERF: Set the internally stored prepared mapping queries.
|
void |
setSize(int size)
Set the batch fetch size.
|
void |
setType(BatchFetchType type)
Set the batch fetch type, (JOIN, IN, EXISTS).
|
protected BatchFetchType type
protected int size
protected List<Expression> attributeExpressions
protected List<DatabaseMapping> batchedMappings
protected transient Map<DatabaseMapping,ReadQuery> mappingQueries
protected transient Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> dataResults
public BatchFetchPolicy()
public BatchFetchPolicy(BatchFetchType type)
public BatchFetchPolicy clone()
public boolean isIN()
public boolean isJOIN()
public boolean isEXISTS()
public BatchFetchType getType()
public void setType(BatchFetchType type)
public int getSize()
public void setSize(int size)
public Map<DatabaseMapping,ReadQuery> getMappingQueries()
public void setMappingQueries(Map<DatabaseMapping,ReadQuery> mappingQueries)
public List<String> getAttributes()
public void setAttributes(List<String> attributes)
public void setAttributeExpressions(List<Expression> attributeExpressions)
public List<Expression> getAttributeExpressions()
public boolean hasAttributes()
public List<DatabaseMapping> getBatchedMappings()
public void setBatchedMappings(List<DatabaseMapping> batchedMappings)
public boolean isAttributeBatchRead(String attributeName)
public boolean isAttributeBatchRead(ClassDescriptor mappingDescriptor, String attributeName)
public void addDataResults(org.eclipse.persistence.internal.sessions.AbstractRecord row)
public List<org.eclipse.persistence.internal.sessions.AbstractRecord> getDataResults(DatabaseMapping mapping)
public void setDataResults(DatabaseMapping mapping, List<org.eclipse.persistence.internal.sessions.AbstractRecord> rows)
public void setDataResults(List<org.eclipse.persistence.internal.sessions.AbstractRecord> rows)
public List<org.eclipse.persistence.internal.sessions.AbstractRecord> getAllDataResults()
public Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> getDataResults()
public void setDataResults(Map<Object,List<org.eclipse.persistence.internal.sessions.AbstractRecord>> dataResults)
public Map<Object,Object> getBatchObjects()
Copyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.