|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FlushMode | |
---|---|
org.hibernate | |
org.hibernate.cfg | |
org.hibernate.engine | |
org.hibernate.impl |
Uses of FlushMode in org.hibernate |
---|
Fields in org.hibernate declared as FlushMode | |
---|---|
static FlushMode |
FlushMode.ALWAYS
The Session is flushed before every query. |
static FlushMode |
FlushMode.AUTO
The Session is sometimes flushed before query execution in order to ensure that queries never return stale state. |
static FlushMode |
FlushMode.COMMIT
The Session is flushed when Transaction.commit() is called. |
static FlushMode |
FlushMode.NEVER
The Session is never flushed unless flush() is explicitly called by the application. |
Methods in org.hibernate that return FlushMode | |
---|---|
FlushMode |
Session.getFlushMode()
Get the current flush mode. |
static FlushMode |
FlushMode.parse(String name)
|
Methods in org.hibernate with parameters of type FlushMode | |
---|---|
boolean |
FlushMode.lessThan(FlushMode other)
|
Criteria |
Criteria.setFlushMode(FlushMode flushMode)
Override the flush mode for this particular query. |
Query |
Query.setFlushMode(FlushMode flushMode)
Override the current session flush mode, just for this query. |
void |
Session.setFlushMode(FlushMode flushMode)
Set the flush mode. |
Uses of FlushMode in org.hibernate.cfg |
---|
Methods in org.hibernate.cfg that return FlushMode | |
---|---|
static FlushMode |
HbmBinder.getFlushMode(String flushMode)
|
Uses of FlushMode in org.hibernate.engine |
---|
Methods in org.hibernate.engine that return FlushMode | |
---|---|
FlushMode |
NamedQueryDefinition.getFlushMode()
|
FlushMode |
SessionImplementor.getFlushMode()
|
Methods in org.hibernate.engine with parameters of type FlushMode | |
---|---|
void |
SessionImplementor.setFlushMode(FlushMode fm)
|
Constructors in org.hibernate.engine with parameters of type FlushMode | |
---|---|
NamedQueryDefinition(String query,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes)
|
|
NamedQueryDefinition(String query,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
Map parameterTypes)
|
|
NamedSQLQueryDefinition(String query,
SQLQueryReturn[] queryReturns,
SQLQueryScalarReturn[] scalarReturns,
List querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes,
boolean callable)
|
|
NamedSQLQueryDefinition(String query,
SQLQueryReturn[] queryReturns,
SQLQueryScalarReturn[] scalarReturns,
List querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
Map parameterTypes,
boolean callable)
backward compatibility: to be removed after HA 3.2beta5 |
|
NamedSQLQueryDefinition(String query,
String resultSetRef,
List querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
CacheMode cacheMode,
boolean readOnly,
String comment,
Map parameterTypes,
boolean callable)
|
|
NamedSQLQueryDefinition(String query,
String resultSetRef,
List querySpaces,
boolean cacheable,
String cacheRegion,
Integer timeout,
Integer fetchSize,
FlushMode flushMode,
Map parameterTypes,
boolean callable)
|
Uses of FlushMode in org.hibernate.impl |
---|
Methods in org.hibernate.impl that return FlushMode | |
---|---|
FlushMode |
SessionImpl.getFlushMode()
|
FlushMode |
StatelessSessionImpl.getFlushMode()
|
Methods in org.hibernate.impl with parameters of type FlushMode | |
---|---|
Query |
AbstractQueryImpl.setFlushMode(FlushMode flushMode)
|
Criteria |
CriteriaImpl.setFlushMode(FlushMode flushMode)
|
Criteria |
CriteriaImpl.Subcriteria.setFlushMode(FlushMode flushMode)
|
void |
SessionImpl.setFlushMode(FlushMode flushMode)
|
void |
StatelessSessionImpl.setFlushMode(FlushMode fm)
|
Constructors in org.hibernate.impl with parameters of type FlushMode | |
---|---|
AbstractQueryImpl(String queryString,
FlushMode flushMode,
SessionImplementor session,
ParameterMetadata parameterMetadata)
|
|
QueryImpl(String queryString,
FlushMode flushMode,
SessionImplementor session,
ParameterMetadata parameterMetadata)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |