--- CircuitBreaker/src/dk/thoerup/circuitbreaker/jmx/JmxAccountingCircuitBreaker.java 2010/06/27 18:52:46 933 +++ CircuitBreaker/src/dk/thoerup/circuitbreaker/jmx/JmxAccountingCircuitBreaker.java 2010/06/28 08:32:45 934 @@ -18,6 +18,10 @@ return cb.getTripCount(); } + public int getRetripCount() { + return cb.getRetripCount(); + } + public int getBlockCount() { return cb.getBlockCount(); } @@ -30,6 +34,10 @@ return cb.getLastTrip(); } + public long getLastRetrip() { + return cb.getLastRetrip(); + } + public long getLastReset() { return cb.getLastReset(); }