Package com.netflix.curator.retry

Examples of com.netflix.curator.retry.BoundedExponentialBackoffRetry


    public String getNamespace() {
        return _namespace;
    }

    public RetryPolicy getRetry() {
        return new BoundedExponentialBackoffRetry(_retry.baseSleepTimeMs, _retry.maxSleepTimeMs, _retry.maxAttempts);
    }
View Full Code Here


    public String getNamespace() {
        return _namespace;
    }

    public RetryPolicy getRetry() {
        return new BoundedExponentialBackoffRetry(_retry.baseSleepTimeMs, _retry.maxSleepTimeMs, _retry.maxAttempts);
    }
View Full Code Here

TOP

Related Classes of com.netflix.curator.retry.BoundedExponentialBackoffRetry

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.