Package com.ocient.metrics
Enum PerfCounter.ThreadingModel
- All Implemented Interfaces:
Serializable,Comparable<PerfCounter.ThreadingModel>,java.lang.constant.Constable
- Enclosing class:
- PerfCounter
public static enum PerfCounter.ThreadingModel extends Enum<PerfCounter.ThreadingModel>
Threading model under which the counter will be mutated
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description HIGH_CONTENTIONFor use in highly contention multi-threaded contexts.LOW_CONTENTIONFor use in multi-producer contexts.NO_CONTENTIONFor use in single-producer contexts. -
Method Summary
Modifier and Type Method Description static PerfCounter.ThreadingModelvalueOf(String name)Returns the enum constant of this type with the specified name.static PerfCounter.ThreadingModel[]values()Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-