/[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 393 - (show annotations) (download)
Mon Oct 5 19:44:40 2009 UTC (14 years, 8 months ago) by torben
File size: 273 byte(s)
First CircuitBreaker impl.
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 }

  ViewVC Help
Powered by ViewVC 1.1.20