Uses of Enum Class
com.pervasive.datarush.monitoring.StatisticState
Packages that use StatisticState
Package
Description
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 StatisticStateModifier and TypeMethodDescriptionAccumulatedTimer.getState()AccumulatedTimerSnapshot.getState()BasicCounter.getState()CounterSnapshot.getState()GaugeSnapshot.getState()IntervalTimer.getState()IntervalTimerSnapshot.getState()StatisticSupplier.getState()Returns the current state of the supplier.static StatisticStateReturns the enum constant of this class with the specified name.static StatisticState[]StatisticState.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.pervasive.datarush.monitoring with parameters of type StatisticStateModifier and TypeMethodDescriptionstatic 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 StatisticStateModifierConstructorDescriptionAccumulatedTimerSnapshot(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