public static enum AepEngine.EventMultiplexerType extends Enum<AepEngine.EventMultiplexerType>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final AepEngine.EventMultiplexerType DedicatedThreaded
This is the default HA policy
public static final AepEngine.EventMultiplexerType FreeThreadedSerialized
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 nameNullPointerException
- if the argument is nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.