org.springframework.integration.handler.advice
Class RequestHandlerCircuitBreakerAdvice
java.lang.Object
org.springframework.integration.handler.advice.AbstractRequestHandlerAdvice
org.springframework.integration.handler.advice.RequestHandlerCircuitBreakerAdvice
- All Implemented Interfaces:
- org.aopalliance.aop.Advice, org.aopalliance.intercept.Interceptor, org.aopalliance.intercept.MethodInterceptor
public class RequestHandlerCircuitBreakerAdvice
- extends AbstractRequestHandlerAdvice
A circuit breaker that stops calling a failing service after threshold
failures, until halfOpenAfter milliseconds has elapsed. A successful
call resets the failure counter.
- Since:
- 2.2
- Author:
- Gary Russell
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RequestHandlerCircuitBreakerAdvice
public RequestHandlerCircuitBreakerAdvice()
setThreshold
public void setThreshold(int threshold)
setHalfOpenAfter
public void setHalfOpenAfter(long halfOpenAfter)
doInvoke
protected java.lang.Object doInvoke(AbstractRequestHandlerAdvice.ExecutionCallback callback,
java.lang.Object target,
Message<?> message)
throws java.lang.Exception
- Specified by:
doInvoke
in class AbstractRequestHandlerAdvice
- Throws:
java.lang.Exception