|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepStuckAlertEvent.Reason>
com.neeve.aep.event.AepStuckAlertEvent.Reason
public static enum AepStuckAlertEvent.Reason
Enumerates the reasons that cause an AepStuckAlertEvent
to
be emitted.
Enum Constant Summary | |
---|---|
HungEventHandler
Indicates that the AepEngine event processor is hung. |
|
HungTransactionPipeline
AepEngine transaction complete asychronously in a pipelined fashion. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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.
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |