Package com.developmentsprint.spring.breaker.interceptor

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

Related Classes of com.developmentsprint.spring.breaker.interceptor.CircuitBreakerInterceptor

Copyright © 2018 www.massapicom. 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.