public static enum AepEngine.PerTransactionStatsLoggingPolicy extends Enum<AepEngine.PerTransactionStatsLoggingPolicy>
This enumerates the policy that determines if and where to log transaction stats (when transaction stats recording is enabled).
Transaction stats logging is an experimental feature and is subject to change without notice.
Enum Constant and Description |
---|
Off
Disable transaction stats logging.
|
UseDedicated
Use a logger dedicated to transaction stats logging.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.PerTransactionStatsLoggingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.PerTransactionStatsLoggingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.PerTransactionStatsLoggingPolicy Off
With this policy, transaction stats logging is disabled.
This is the default policy.
public static final AepEngine.PerTransactionStatsLoggingPolicy UseDedicated
With this policy, the engine uses a logger dedicated to logging transaction stats.
public static AepEngine.PerTransactionStatsLoggingPolicy[] values()
for (AepEngine.PerTransactionStatsLoggingPolicy c : AepEngine.PerTransactionStatsLoggingPolicy.values()) System.out.println(c);
public static AepEngine.PerTransactionStatsLoggingPolicy 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.