Interface SimpleStat

All Known Implementing Classes:
DefaultSimpleStat, SimpleStateWithTimer

public interface SimpleStat
A simple statistic recorder that computes the average, minimum and maximum value observed.
Since:
10.0
Author:
Pedro Ruivo
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    static final SimpleStat
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    default long
     
    default long
    getAverage(long defaultValue)
     
    default long
    getMax(long defaultValue)
     
    default long
    getMin(long defaultValue)
     
    default boolean
     
    default void
    record(long value)
     
    default void
     
    default void
     
  • Field Details Link icon

  • Method Details Link icon

    • record Link icon

      default void record(long value)
    • getMin Link icon

      default long getMin(long defaultValue)
    • getMax Link icon

      default long getMax(long defaultValue)
    • getAverage Link icon

      default long getAverage(long defaultValue)
    • count Link icon

      default long count()
    • isEmpty Link icon

      default boolean isEmpty()
    • setTimer Link icon

      default void setTimer(TimerTracker timer)
    • reset Link icon

      default void reset()