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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3212 - (show annotations) (download)
Thu Dec 28 09:34:47 2017 UTC (6 years, 4 months ago) by torben
File size: 308 byte(s)
Use generics to encapsulate returned value
1 package dk.thoerup.circuitbreaker;
2
3
4
5 public interface CircuitBreakerState {
6 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
10 public String getName();
11 }

Properties

Name Value
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.20