Methods Summary |
---|
public javax.management.j2ee.statistics.CountStatistic | getNumTimersCreated()
createdCountStat.setCount(timerDelegate.getTimersCreated());
return (CountStatistic) createdCountStat.modifiableView();
|
public javax.management.j2ee.statistics.CountStatistic | getNumTimersDelivered()
deliveredCountStat.setCount(timerDelegate.getTimersDelivered());
return (CountStatistic) deliveredCountStat.modifiableView();
|
public javax.management.j2ee.statistics.CountStatistic | getNumTimersRemoved()
removedCountStat.setCount(timerDelegate.getTimersRemoved());
return (CountStatistic) removedCountStat.modifiableView();
|
private void | initStats()
createdCountStat = new MutableCountStatisticImpl(
new CountStatisticImpl("NumTimersCreated"));
removedCountStat = new MutableCountStatisticImpl(
new CountStatisticImpl("NumTimersRemoved"));
deliveredCountStat = new MutableCountStatisticImpl(
new CountStatisticImpl("NumTimersDelivered"));
|
public void | monitoringLevelChanged(boolean monitoringOn)
timerDelegate.monitoringLevelChanged( monitoringOn );
|