/[projects]/miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreaker.java
ViewVC logotype

Diff of /miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreaker.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 402 by torben, Tue Oct 6 21:23:49 2009 UTC revision 403 by torben, Wed Oct 7 04:14:14 2009 UTC
# Line 17  public class JmxCircuitBreaker implement Line 17  public class JmxCircuitBreaker implement
17          public String getStateName() {          public String getStateName() {
18                  return cb.getStateName();                  return cb.getStateName();
19          }          }
20            
21        public int getThreshold() {
22            return cb.getThreshold();
23        }
24        
25        public int getFailureCount() {
26            return cb.getFailureCount();
27        }
28        
29        public long getElapsed() {
30            return cb.getElapsed();
31        }
32    
33          public void reset() {          public void reset() {
34                  cb.reset();                  cb.reset();

Legend:
Removed from v.402  
changed lines
  Added in v.403

  ViewVC Help
Powered by ViewVC 1.1.20