public static enum AepStuckAlertEvent.Reason extends Enum<AepStuckAlertEvent.Reason>
AepStuckAlertEvent
to
be emitted.Enum Constant and Description |
---|
HungEventHandler
Indicates that the
AepEngine event processor is hung. |
HungTransactionPipeline
AepEngine transaction complete asychronously in a pipelined fashion. |
Modifier and Type | Method and Description |
---|---|
static AepStuckAlertEvent.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepStuckAlertEvent.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepStuckAlertEvent.Reason HungTransactionPipeline
AepEngine
transaction complete asychronously in a pipelined fashion.
The engine's pipeline is considered hung when there are oustanding commits
that have not completed.public static final AepStuckAlertEvent.Reason HungEventHandler
AepEngine
event processor is hung. The event
processor thread handles dispatching of application messages to their
handlers along with other internal events.public static AepStuckAlertEvent.Reason[] values()
for (AepStuckAlertEvent.Reason c : AepStuckAlertEvent.Reason.values()) System.out.println(c);
public static AepStuckAlertEvent.Reason 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.