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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2449 - (hide annotations) (download)
Fri Mar 20 08:58:46 2015 UTC (9 years, 2 months ago) by torben
File size: 299 byte(s)
switch to maven
1 torben 467 package dk.thoerup.circuitbreaker;
2 torben 393
3    
4    
5     public interface CircuitBreakerState {
6 torben 450 public void preInvoke(CircuitBreaker cb) throws Exception;
7     public void postInvoke(CircuitBreaker cb) throws Exception;
8     public void onError(CircuitBreaker cb, Exception t) throws Exception;
9 torben 393
10 torben 397 public String getName();
11 torben 393 }

Properties

Name Value
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.20