Package com.ocient.metrics
Enum Class PerfCounter.ThreadingModel
- All Implemented Interfaces:
Serializable,Comparable<PerfCounter.ThreadingModel>,Constable
- Enclosing class:
- PerfCounter
Threading model under which the counter will be mutated
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFor use in highly contention multi-threaded contexts.For use in multi-producer contexts.For use in single-producer contexts. -
Method Summary
Modifier and TypeMethodDescriptionstatic PerfCounter.ThreadingModelReturns the enum constant of this class with the specified name.static PerfCounter.ThreadingModel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_CONTENTION
For use in single-producer contexts. Only use this is you can guarantee the counter will be updated by a single thread for the entirety of its lifespan. -
LOW_CONTENTION
For use in multi-producer contexts. This is the DEFAULT model, use it if you are unsure. -
HIGH_CONTENTION
For use in highly contention multi-threaded contexts. Only select this if performance analysis points to contention on a particular counter.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-