fix incorrect javadoc of FlushMode
This commit is contained in:
parent
9b4ed961b8
commit
a347cd8098
|
@ -34,20 +34,27 @@ public enum FlushMode {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link Session} is flushed when {@link Transaction#commit()}
|
* The {@link Session} is flushed when {@link Transaction#commit()}
|
||||||
* is called.
|
* is called. It is never automatically flushed before query
|
||||||
|
* execution.
|
||||||
|
*
|
||||||
|
* @see FlushModeType#COMMIT
|
||||||
*/
|
*/
|
||||||
COMMIT,
|
COMMIT,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link Session} is sometimes flushed before query execution
|
* The {@link Session} is flushed when {@link Transaction#commit()}
|
||||||
* in order to ensure that queries never return stale state. This
|
* is called, and is sometimes flushed before query execution in
|
||||||
* is the default flush mode.
|
* order to ensure that queries never return stale state. This is
|
||||||
|
* the default flush mode.
|
||||||
|
*
|
||||||
|
* @see FlushModeType#AUTO
|
||||||
*/
|
*/
|
||||||
AUTO,
|
AUTO,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link Session} is flushed before every query. This is almost
|
* The {@link Session} is flushed when {@link Transaction#commit()}
|
||||||
* always unnecessary and inefficient.
|
* is called and before every query. This is usually unnecessary and
|
||||||
|
* inefficient.
|
||||||
*/
|
*/
|
||||||
ALWAYS;
|
ALWAYS;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue