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 StatisticState
AccumulatedTimer. getState()
StatisticState
AccumulatedTimerSnapshot. getState()
StatisticState
BasicCounter. getState()
StatisticState
CounterSnapshot. getState()
StatisticState
GaugeSnapshot. getState()
StatisticState
IntervalTimer. getState()
StatisticState
IntervalTimerSnapshot. getState()
StatisticState
StatisticSupplier. getState()
Returns the current state of the supplier.static StatisticState
StatisticState. 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 void
StatisticSupplierTestHelper. assertCounter(StatisticState expectedState, long expectedCount, CounterSupplier actual)
static void
StatisticSupplierTestHelper. assertGauge(StatisticState state, long currentValue, long minAllowedValue, long maxAllowedValue, GaugeSupplier actual)
static void
StatisticSupplierTestHelper. assertTimer(StatisticState state, long startTimeMillis, long endTimeMillis, IntervalTimerSupplier timer)
static void
StatisticSupplierTestHelper. assertTimer(StatisticState state, long accumulatedTime, AccumulatedTimerSupplier timer)
static CounterSupplier
StatisticSupplierTestHelper. counter(StatisticState state, long count)
static GaugeSupplier
StatisticSupplierTestHelper. gauge(StatisticState state, long currentValue, long minAllowedValue, long maxAllowedValue)
static AccumulatedTimerSupplier
StatisticSupplierTestHelper. timer(StatisticState state, long accumulatedTime)
static IntervalTimerSupplier
StatisticSupplierTestHelper. 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
-