Uses of Class
com.pervasive.datarush.monitoring.StatisticState
-
Packages that use StatisticState Package Description com.pervasive.datarush.monitoring Provides classes and interfaces for reporting on commonly monitored resources such as memory, threads, and I/O. -
-
Uses of StatisticState in com.pervasive.datarush.monitoring
Methods in com.pervasive.datarush.monitoring that return StatisticState Modifier and Type Method Description StatisticStateAccumulatedTimer. getState()StatisticStateAccumulatedTimerSnapshot. getState()StatisticStateBasicCounter. getState()StatisticStateCounterSnapshot. getState()StatisticStateGaugeSnapshot. getState()StatisticStateIntervalTimer. getState()StatisticStateIntervalTimerSnapshot. getState()StatisticStateStatisticSupplier. getState()Returns the current state of the supplier.static StatisticStateStatisticState. valueOf(String name)Returns the enum constant of this type with the specified name.static StatisticState[]StatisticState. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pervasive.datarush.monitoring with parameters of type StatisticState Modifier and Type Method Description static voidStatisticSupplierTestHelper. assertCounter(StatisticState expectedState, long expectedCount, CounterSupplier actual)static voidStatisticSupplierTestHelper. assertGauge(StatisticState state, long currentValue, long minAllowedValue, long maxAllowedValue, GaugeSupplier actual)static voidStatisticSupplierTestHelper. assertTimer(StatisticState state, long startTimeMillis, long endTimeMillis, IntervalTimerSupplier timer)static voidStatisticSupplierTestHelper. assertTimer(StatisticState state, long accumulatedTime, AccumulatedTimerSupplier timer)static CounterSupplierStatisticSupplierTestHelper. counter(StatisticState state, long count)static GaugeSupplierStatisticSupplierTestHelper. gauge(StatisticState state, long currentValue, long minAllowedValue, long maxAllowedValue)static AccumulatedTimerSupplierStatisticSupplierTestHelper. timer(StatisticState state, long accumulatedTime)static IntervalTimerSupplierStatisticSupplierTestHelper. timer(StatisticState state, long startTimeMillis, long endTimeMillis)Constructors in com.pervasive.datarush.monitoring with parameters of type StatisticState Constructor Description AccumulatedTimerSnapshot(StatisticState state, long accumulatedTimeMillis)Create a snapshot with the specified valuesCounterSnapshot(StatisticState state, long count)Create a snapshot with the specified valuesGaugeSnapshot(StatisticState state, long currentValue, long minAllowedValue, long maxAllowedValue)Create a snapshot with the specified valuesIntervalTimerSnapshot(StatisticState state, long startTimeMillis, long endTimeMillis)Create a snapshot with the specified values
-