/[projects]/CircuitBreaker/src/dk/thoerup/curcuitbreaker/jmx/JmxCircuitBreaker.java
ViewVC logotype

Contents of /CircuitBreaker/src/dk/thoerup/curcuitbreaker/jmx/JmxCircuitBreaker.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 403 - (show annotations) (download)
Wed Oct 7 04:14:14 2009 UTC (14 years, 7 months ago) by torben
File size: 693 byte(s)
Finished JMX interfaces to CB and AccountingCB
1 package dk.thoerup.curcuitbreaker.jmx;
2
3 import dk.thoerup.curcuitbreaker.CircuitBreaker;
4
5 public class JmxCircuitBreaker implements JmxCircuitBreakerMBean {
6
7 private CircuitBreaker cb;
8
9 public JmxCircuitBreaker(CircuitBreaker cb) {
10 this.cb = cb;
11 }
12
13 public String getName() {
14 return cb.getName();
15 }
16
17 public String getStateName() {
18 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() {
34 cb.reset();
35
36 }
37
38 public void tripBreaker() {
39 cb.tripBreaker();
40 }
41
42 }

  ViewVC Help
Powered by ViewVC 1.1.20