Package com.yammer.tenacity.core.core

Examples of com.yammer.tenacity.core.core.CircuitBreaker


    public Iterable<CircuitBreaker> circuitBreakers() {
        final ImmutableList.Builder<CircuitBreaker> circuitBreakerBuilder = ImmutableList.builder();
        for (TenacityPropertyKey key : keys) {
            final HystrixCircuitBreaker circuitBreaker = TenacityCommand.getCircuitBreaker(key);
            if (circuitBreaker != null) {
                circuitBreakerBuilder.add(new CircuitBreaker(key, circuitBreaker.isOpen()));
            }
        }
        return circuitBreakerBuilder.build();
    }
View Full Code Here

TOP

Related Classes of com.yammer.tenacity.core.core.CircuitBreaker

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.