Interface Counter


  • public interface Counter
    Metrics Counter. See http://metrics.dropwizard.io/3.1.0/getting-started/#counters
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void dec()
      Decrements counter by 1
      void dec​(long value)
      Decrements counter by value
      void inc()
      Increments counter by 1
      void inc​(long value)
      Increments counter by value
    • Method Detail

      • inc

        void inc()
        Increments counter by 1
      • inc

        void inc​(long value)
        Increments counter by value
      • dec

        void dec()
        Decrements counter by 1
      • dec

        void dec​(long value)
        Decrements counter by value