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

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

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

revision 393 by torben, Mon Oct 5 19:44:40 2009 UTC revision 395 by torben, Mon Oct 5 19:54:25 2009 UTC
# Line 2  package dk.thoerup.curcuitbreaker; Line 2  package dk.thoerup.curcuitbreaker;
2    
3  import java.util.logging.Logger;  import java.util.logging.Logger;
4    
5    /* Simple CircuitBreaker implementation - snipped from http://www.jroller.com/kenwdelong/entry/circuit_breaker_in_java
6     *
7     *  example of how it can be used
8    
9     private CircuitBreaker cb = new CircuitBreaker("test", 5, 10000);
10  /* example of how it can be used   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {  
11                  class TestInvocation implements CircuitInvocation {                  class TestInvocation implements CircuitInvocation {
12                          String url;                          String url;
13                          public TestInvocation(String url) {                          public TestInvocation(String url) {

Legend:
Removed from v.393  
changed lines
  Added in v.395

  ViewVC Help
Powered by ViewVC 1.1.20