Class SimpleCounterSet

  • All Implemented Interfaces:
    CounterSet

    public class SimpleCounterSet
    extends Metric
    implements CounterSet
    Represent a set of counters identified by different keys. The counter is thread-safe
    • Constructor Detail

      • SimpleCounterSet

        public SimpleCounterSet​(String name)
    • Method Detail

      • add

        public void add​(String key,
                        long delta)
        Description copied from interface: CounterSet
        Increment the value by a given amount for the given key

        This method is thread safe, The MetricsProvider will take care of synchronization.

        Specified by:
        add in interface CounterSet
        Overrides:
        add in class Metric
        Parameters:
        key - the key to increment the count for the given key
        delta - amount to increment, this cannot be a negative number.
      • reset

        public void reset()
        Overrides:
        reset in class Metric