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

Contents of /CircuitBreaker/src/dk/thoerup/curcuitbreaker/CircuitBreakerState.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 397 - (show annotations) (download)
Tue Oct 6 05:22:40 2009 UTC (14 years, 7 months ago) by torben
File size: 299 byte(s)
Make some of the internal state readable
1 package dk.thoerup.curcuitbreaker;
2
3
4
5 public interface CircuitBreakerState {
6 public void preInvoke(CircuitBreaker cb) throws Throwable;
7 public void postInvoke(CircuitBreaker cb) throws Throwable;
8 public void onError(CircuitBreaker cb, Throwable t) throws Throwable;
9
10 public String getName();
11 }

  ViewVC Help
Powered by ViewVC 1.1.20