java.lang.Object
java.lang.Enum<MetricType>
com.giffing.bucket4j.spring.boot.starter.context.metrics.MetricType
All Implemented Interfaces:
Serializable, Comparable<MetricType>, Constable

public enum MetricType extends Enum<MetricType>
  • Enum Constant Details

    • CONSUMED_COUNTER

      public static final MetricType CONSUMED_COUNTER
      Count token consumption.
    • REJECTED_COUNTER

      public static final MetricType REJECTED_COUNTER
      Count whenever consumption request for tokens is rejected.
    • PARKED_COUNTER

      public static final MetricType PARKED_COUNTER
      Count parked threads which wait of tokens refill in result of interaction with Bucket4js BlockingBucket.
    • INTERRUPTED_COUNTER

      public static final MetricType INTERRUPTED_COUNTER
      Count interrupted threads during the wait of tokens refill in result of interaction with Bucket4js BlockingBucket
    • DELAYED_COUNTER

      public static final MetricType DELAYED_COUNTER
      Count delayed tasks was submit to java.util.concurrent.ScheduledExecutorService because of wait for tokens refill in result of interaction with SchedulingBucket
  • Method Details

    • values

      public static MetricType[] 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

      public static MetricType valueOf(String name)
      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 name
      NullPointerException - if the argument is null