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

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

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

revision 449 by torben, Tue Oct 6 05:22:40 2009 UTC revision 450 by torben, Tue Oct 20 10:26:50 2009 UTC
# Line 3  package dk.thoerup.curcuitbreaker; Line 3  package dk.thoerup.curcuitbreaker;
3    
4    
5  public interface CircuitBreakerState {  public interface CircuitBreakerState {
6          public void preInvoke(CircuitBreaker cb) throws Throwable;          public void preInvoke(CircuitBreaker cb) throws Exception;
7          public void postInvoke(CircuitBreaker cb) throws Throwable;          public void postInvoke(CircuitBreaker cb) throws Exception;
8          public void onError(CircuitBreaker cb, Throwable t) throws Throwable;          public void onError(CircuitBreaker cb, Exception t) throws Exception;
9                    
10          public String getName();          public String getName();
11  }  }

Legend:
Removed from v.449  
changed lines
  Added in v.450

  ViewVC Help
Powered by ViewVC 1.1.20