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

Annotation of /miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreakerMBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2570 - (hide annotations) (download)
Tue Jun 9 09:05:26 2015 UTC (8 years, 11 months ago) by torben
File size: 453 byte(s)
Remove old/deprecated inherited circuitbreakers
1 torben 467 package dk.thoerup.circuitbreaker.jmx;
2 torben 402
3     public interface JmxCircuitBreakerMBean {
4     public String getName();
5    
6     public String getStateName();
7    
8 torben 403 public int getThreshold();
9    
10 torben 413 public int getTimeout();
11    
12 torben 403 public int getFailureCount();
13    
14     public long getElapsed();
15    
16 torben 409 public String getNotifierName();
17    
18 torben 2570 public String getStatisticsName();
19    
20 torben 402 public void reset();
21    
22     public void tripBreaker();
23    
24     }

  ViewVC Help
Powered by ViewVC 1.1.20