|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LogMode> org.jbpm.env.session.LogMode
public enum LogMode
indicates when the processDefinition logs that are generated during processDefinition execution should be parsed and inserted into the business intelligence store.
Enum Constant Summary | |
---|---|
ASYNC_AFTER_EACH_TRANSACTION
the processDefinition logs will be parsed after each runtime execution transaction asynchronously. |
|
ASYNC_AFTER_END_TRANSACTION
the processDefinition logs will be parsed into the business intelligence store in a separate transaction after the transaction in which the processDefinition execution finished. |
|
INSIDE_EACH_TRANSACTION
the processDefinition logs will be parsed and inserted into the business intelligence database directly in each transaction. |
|
INSIDE_END_TRANSACTION
the processDefinition logs will be parsed into the business intelligence store in the transaction where the processDefinition execution finishes. |
Method Summary | |
---|---|
static LogMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LogMode[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LogMode INSIDE_EACH_TRANSACTION
public static final LogMode ASYNC_AFTER_EACH_TRANSACTION
public static final LogMode INSIDE_END_TRANSACTION
public static final LogMode ASYNC_AFTER_END_TRANSACTION
Method Detail |
---|
public static final LogMode[] values()
for(LogMode c : LogMode.values()) System.out.println(c);
public static LogMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |