Examples of CircuitBreakerInterceptor


Examples of com.developmentsprint.spring.breaker.interceptor.CircuitBreakerInterceptor

    }

    @Bean
    @Role(BeanDefinition.ROLE_INFRASTRUCTURE)
    public CircuitBreakerInterceptor circuitBreakerInterceptor() {
        CircuitBreakerInterceptor interceptor = new CircuitBreakerInterceptor();
        interceptor.setCircuitBreakerAttributeSource(circuitBreakerOperationSource());
        if (this.circuitManager != null) {
            interceptor.setCircuitManager(this.circuitManager);
        }
        return interceptor;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.