public static enum AepEngine.PerTransactionStatsLoggingFailurePolicy extends Enum<AepEngine.PerTransactionStatsLoggingFailurePolicy>
This enumerates the policy that determines what to do in the event of a transaction stats logging failure.
Transaction stats logging is an experimental feature and is subject to change without notice.
Enum Constant and Description |
---|
StopEngine
This policy specifies that a failure in transaction stats logging will
be treated as a failure which will result in shutdown of the engine.
|
StopLogging
This policy specifies that transaction stats logging errors will be trapped
and cause the engine to discontinue transaction stats message logging.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.PerTransactionStatsLoggingFailurePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.PerTransactionStatsLoggingFailurePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.PerTransactionStatsLoggingFailurePolicy StopLogging
This is the default policy.
public static final AepEngine.PerTransactionStatsLoggingFailurePolicy StopEngine
public static AepEngine.PerTransactionStatsLoggingFailurePolicy[] values()
for (AepEngine.PerTransactionStatsLoggingFailurePolicy c : AepEngine.PerTransactionStatsLoggingFailurePolicy.values()) System.out.println(c);
public static AepEngine.PerTransactionStatsLoggingFailurePolicy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.