|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SrvMonDisruptorClaimStrategy>
com.neeve.server.mon.SrvMonDisruptorClaimStrategy
@Generated(value="com.neeve.adm.AdmEnumeration", date="Wed Mar 28 10:54:31 EDT 2018") public enum SrvMonDisruptorClaimStrategy
Disruptor stategy for claiming the sequence of events being added to the disruptor ring buffer
Enum Constant Summary | |
---|---|
MultiThreaded
Strategy to be used when there are multiple publisher threads claiming sequences Strategy to be used when there are multiple publisher threads claiming sequences. |
|
MultiThreadedSufficientCores
Strategy to be used when there are multiple publisher threads claiming sequences This strategy requires sufficient cores to allow multiple publishers to be concurrently claiming sequences and those thread a contented relatively infrequently. |
|
SingleThreaded
Optimised strategy to be used when there is a single publisher thread claiming sequences. |
|
Unknown
Indicates the claim strategy in use is invalid or not recognized |
Field Summary | |
---|---|
static SrvMonDisruptorClaimStrategy[] |
EMPTY_ARRAY
A preallocated empty array used to avoid garbage when returning empty arrays. |
int |
val
|
static List<SrvMonDisruptorClaimStrategy> |
VALUES
A zero garbage alternative to values() . |
Method Summary | |
---|---|
static SrvMonDisruptorClaimStrategy |
fromCode(int code)
Gets the value corresponding to the provided int 'code' value. |
static SrvMonDisruptorClaimStrategy |
fromCodeString(String value)
Gets the value corresponding to the provided 'code' value in its String form. |
static SrvMonDisruptorClaimStrategy |
fromValue(int val)
Gets the value corresponding to the provided 'constant' value. |
String |
getCodeString()
Gets the code value for this enumeration as a String. |
static Class<?> |
getCodeType()
Gets the code type with which this enumeration was generated. |
static boolean |
hasValue(int val)
Tests if the passed in value represents a 'constant' in this enumeration. |
static SrvMonDisruptorClaimStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SrvMonDisruptorClaimStrategy[] |
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 SrvMonDisruptorClaimStrategy SingleThreaded
public static final SrvMonDisruptorClaimStrategy MultiThreaded
Strategy to be used when there are multiple publisher threads claiming sequences. This strategy is reasonably forgiving when the multiple publisher threads are highly contended or working in an environment where there is insufficient CPUs to handle multiple publisher threads.
public static final SrvMonDisruptorClaimStrategy MultiThreadedSufficientCores
This strategy requires sufficient cores to allow multiple publishers to be concurrently claiming sequences and those thread a contented relatively infrequently.
public static final SrvMonDisruptorClaimStrategy Unknown
Field Detail |
---|
public static final List<SrvMonDisruptorClaimStrategy> VALUES
values()
.
public static final SrvMonDisruptorClaimStrategy[] EMPTY_ARRAY
public final int val
Method Detail |
---|
public static SrvMonDisruptorClaimStrategy[] values()
for (SrvMonDisruptorClaimStrategy c : SrvMonDisruptorClaimStrategy.values()) System.out.println(c);
public static SrvMonDisruptorClaimStrategy 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 nullpublic static final boolean hasValue(int val)
val
- The value to test for.
public static final SrvMonDisruptorClaimStrategy fromValue(int val)
val
- The 'constant' value to look up.
IllegalArgumentException
- if the provided code is not a valid code for this enumpublic static final SrvMonDisruptorClaimStrategy fromCode(int code)
code
- The int 'code' value to look up.
IllegalArgumentException
- if the provided code is not a valid code for this enumpublic static final SrvMonDisruptorClaimStrategy fromCodeString(String value)
value
- The String 'code' value to look up.
IllegalArgumentException
- if the provided code is not a valid code for this enumpublic static final Class<?> getCodeType()
public final String getCodeString()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |