|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Counter | |
|---|---|
| org.javasimon | Core package, contains Simon implementations, with
the SimonManager as the center point of the API. |
| org.javasimon.callback | Callback is an event listener registered with the Manager,
listening for manager or Simon events. |
| org.javasimon.jmx | JMX capabilities for Simons. |
| org.javasimon.utils | Java Simon supporting utilities and tools. |
| Uses of Counter in org.javasimon |
|---|
| Classes in org.javasimon that implement Counter | |
|---|---|
(package private) class |
CounterImpl
Class implements Counter interface - see there for how to use Counter. |
(package private) class |
NullCounter
Null Counter implements Simon returned by the disabled Manager.getCounter(String). |
| Methods in org.javasimon that return Counter | |
|---|---|
Counter |
NullCounter.decrease()
|
Counter |
CounterImpl.decrease()
|
Counter |
Counter.decrease()
Decrements the counter by one. |
Counter |
NullCounter.decrease(long dec)
|
Counter |
CounterImpl.decrease(long dec)
|
Counter |
Counter.decrease(long dec)
Increments the counter by the specified value. |
Counter |
SwitchingManager.getCounter(String name)
|
static Counter |
SimonManager.getCounter(String name)
Returns existing Counter or creates new if necessary. |
Counter |
Manager.getCounter(String name)
Returns existing Counter or creates new if necessary. |
Counter |
EnabledManager.getCounter(String name)
|
Counter |
DisabledManager.getCounter(String name)
Returns "Null Counter" that always returns empty/null values and cannot measure anything. |
Counter |
NullCounter.increase()
|
Counter |
CounterImpl.increase()
|
Counter |
Counter.increase()
Increments the counter by one. |
Counter |
NullCounter.increase(long inc)
|
Counter |
CounterImpl.increase(long inc)
|
Counter |
Counter.increase(long inc)
Increments the counter by the specified value. |
Counter |
CounterImpl.reset()
|
Counter |
Counter.reset()
|
Counter |
NullCounter.set(long val)
|
Counter |
CounterImpl.set(long val)
|
Counter |
Counter.set(long val)
Sets the value of the counter to specified value. |
| Uses of Counter in org.javasimon.callback |
|---|
| Methods in org.javasimon.callback with parameters of type Counter | |
|---|---|
private boolean |
FilterRule.checkCounter(Counter counter,
Object... params)
|
void |
CompositeFilterCallback.onCounterDecrease(Counter counter,
long dec,
CounterSample sample)
|
void |
CompositeCallbackImpl.onCounterDecrease(Counter counter,
long dec,
CounterSample sample)
|
void |
CallbackSkeleton.onCounterDecrease(Counter counter,
long dec,
CounterSample sample)
|
void |
Callback.onCounterDecrease(Counter counter,
long dec,
CounterSample sample)
Counter decrease event. |
void |
CompositeFilterCallback.onCounterIncrease(Counter counter,
long inc,
CounterSample sample)
|
void |
CompositeCallbackImpl.onCounterIncrease(Counter counter,
long inc,
CounterSample sample)
|
void |
CallbackSkeleton.onCounterIncrease(Counter counter,
long inc,
CounterSample sample)
|
void |
Callback.onCounterIncrease(Counter counter,
long inc,
CounterSample sample)
Counter increase event. |
void |
CompositeFilterCallback.onCounterSet(Counter counter,
long val,
CounterSample sample)
|
void |
CompositeCallbackImpl.onCounterSet(Counter counter,
long val,
CounterSample sample)
|
void |
CallbackSkeleton.onCounterSet(Counter counter,
long val,
CounterSample sample)
|
void |
Callback.onCounterSet(Counter counter,
long val,
CounterSample sample)
Counter set event. |
| Uses of Counter in org.javasimon.jmx |
|---|
| Fields in org.javasimon.jmx declared as Counter | |
|---|---|
protected Counter |
CounterMXBeanImpl.counter
Wrapped Counter instance - protected for subclasses. |
| Constructors in org.javasimon.jmx with parameters of type Counter | |
|---|---|
CounterMXBeanImpl(Counter counter)
Creates the MX bean for the provided Counter. |
|
| Uses of Counter in org.javasimon.utils |
|---|
| Methods in org.javasimon.utils with parameters of type Counter | |
|---|---|
void |
SystemDebugCallback.onCounterDecrease(Counter counter,
long dec,
CounterSample sample)
|
void |
SystemDebugCallback.onCounterIncrease(Counter counter,
long inc,
CounterSample sample)
|
void |
SystemDebugCallback.onCounterSet(Counter counter,
long val,
CounterSample sample)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||