package dk.thoerup.circuitbreaker.jmx; public interface JmxAccountingCircuitBreakerMBean extends JmxCircuitBreakerMBean{ public int getTripCount(); public int getBlockCount(); public int getTotalFailureCount(); public int getTotalCallCount(); public long getLastTrip(); public long getLastFailure(); public long getLastResetCounters(); public void resetCounters(); }