|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepEngine.EventMultiplexerType>
com.neeve.aep.AepEngine.EventMultiplexerType
public static enum AepEngine.EventMultiplexerType
Enumerates an engine's supported event multiplexer types
Enum Constant Summary | |
---|---|
DedicatedThreaded
Event multiplexer in which a dedicated thread handles all inbound events. |
|
FreeThreadedSerialized
Event multiplexer where any one of the publishing threads is used to process the events as long as only one of the threads is processing the events at any point in time. |
Method Summary | |
---|---|
static AepEngine.EventMultiplexerType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AepEngine.EventMultiplexerType[] |
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 AepEngine.EventMultiplexerType DedicatedThreaded
This is the default HA policy
public static final AepEngine.EventMultiplexerType FreeThreadedSerialized
Method Detail |
---|
public static AepEngine.EventMultiplexerType[] values()
for (AepEngine.EventMultiplexerType c : AepEngine.EventMultiplexerType.values()) System.out.println(c);
public static AepEngine.EventMultiplexerType 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 |