Class StatisticsCounter

java.lang.Object
org.red5.server.api.statistics.support.StatisticsCounter

public class StatisticsCounter extends Object
Counts numbers used by the statistics. Keeps track of current, maximum and total numbers.
Author:
The Red5 Project, Joachim Bauch (jojo@struktur.de)
  • Field Details

  • Constructor Details

    • StatisticsCounter

      public StatisticsCounter()
  • Method Details

    • increment

      public void increment()
      Increment statistics by one.
    • decrement

      public void decrement()
      Decrement statistics by one.
    • getCurrent

      public int getCurrent()
      Get current number.
      Returns:
      current number
    • getTotal

      public int getTotal()
      Get total number.
      Returns:
      total
    • getMax

      public int getMax()
      Get maximum number.
      Returns:
      max
    • toString

      public String toString()
      Overrides:
      toString in class Object