Package com.netflix.hystrix.HystrixCircuitBreaker

Examples of com.netflix.hystrix.HystrixCircuitBreaker.HystrixCircuitBreakerImpl


    /**
     * Utility method for creating {@link HystrixCircuitBreaker} for unit tests.
     */
    private static HystrixCircuitBreaker getCircuitBreaker(HystrixCommandKey key, HystrixCommandGroupKey commandGroup, HystrixCommandMetrics metrics, HystrixCommandProperties.Setter properties) {
        return new HystrixCircuitBreakerImpl(key, commandGroup, HystrixCommandPropertiesTest.asMock(properties), metrics);
    }
View Full Code Here

TOP

Related Classes of com.netflix.hystrix.HystrixCircuitBreaker.HystrixCircuitBreakerImpl

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.