/[projects]/CircuitBreaker/src/dk/thoerup/circuitbreaker/OpenState.java
ViewVC logotype

Diff of /CircuitBreaker/src/dk/thoerup/circuitbreaker/OpenState.java

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

revision 397 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  import java.util.concurrent.atomic.AtomicLong;  import java.util.concurrent.atomic.AtomicLong;
4    
5    
6  public class OpenState implements CircuitBreakerState {  public final class OpenState implements CircuitBreakerState {
7    
8          private AtomicLong tripTime = new AtomicLong(0);          final private AtomicLong tripTime = new AtomicLong(0);
9          private AtomicLong timeout = new AtomicLong(0);          final private AtomicLong timeout = new AtomicLong(0);
10                    
11          public void setTimeout(long timeout) {          public void setTimeout(long timeout) {
12                  this.timeout.set( timeout );                  this.timeout.set( timeout );
13          }          }
14                    
15      public void preInvoke(CircuitBreaker circuitBreaker) throws Throwable      public void preInvoke(CircuitBreaker circuitBreaker) throws Exception
16      {      {
17          long now = System.currentTimeMillis();          long now = System.currentTimeMillis();
18          long elapsed = now - tripTime.get();          long elapsed = now - tripTime.get();
# Line 27  public class OpenState implements Circui Line 27  public class OpenState implements Circui
27          }          }
28      }      }
29    
30      public void postInvoke(CircuitBreaker circuitBreaker) throws Throwable      public void postInvoke(CircuitBreaker circuitBreaker) throws Exception
31      {      {
32          // NO OP          // NO OP
33      }      }
34    
35      public void onError(CircuitBreaker circuitBreaker, Throwable t) throws Throwable      public void onError(CircuitBreaker circuitBreaker, Exception t) throws Exception
36      {      {
37          // NO OP          // NO OP
38      }      }

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

  ViewVC Help
Powered by ViewVC 1.1.20