Uses of Interface
org.apache.curator.RetryPolicy
-
Packages that use RetryPolicy Package Description org.apache.curator org.apache.curator.ensemble.exhibitor org.apache.curator.retry -
-
Uses of RetryPolicy in org.apache.curator
Methods in org.apache.curator that return RetryPolicy Modifier and Type Method Description RetryPolicyCuratorZookeeperClient. getRetryPolicy()Return the current retry policyMethods in org.apache.curator with parameters of type RetryPolicy Modifier and Type Method Description voidCuratorZookeeperClient. setRetryPolicy(RetryPolicy policy)Change the retry policyConstructors in org.apache.curator with parameters of type RetryPolicy Constructor Description CuratorZookeeperClient(java.lang.String connectString, int sessionTimeoutMs, int connectionTimeoutMs, org.apache.zookeeper.Watcher watcher, RetryPolicy retryPolicy)CuratorZookeeperClient(EnsembleProvider ensembleProvider, int sessionTimeoutMs, int connectionTimeoutMs, org.apache.zookeeper.Watcher watcher, RetryPolicy retryPolicy)CuratorZookeeperClient(ZookeeperFactory zookeeperFactory, EnsembleProvider ensembleProvider, int sessionTimeoutMs, int connectionTimeoutMs, int waitForShutdownTimeoutMs, org.apache.zookeeper.Watcher watcher, RetryPolicy retryPolicy, boolean canBeReadOnly, ConnectionHandlingPolicy connectionHandlingPolicy)CuratorZookeeperClient(ZookeeperFactory zookeeperFactory, EnsembleProvider ensembleProvider, int sessionTimeoutMs, int connectionTimeoutMs, org.apache.zookeeper.Watcher watcher, RetryPolicy retryPolicy, boolean canBeReadOnly)CuratorZookeeperClient(ZookeeperFactory zookeeperFactory, EnsembleProvider ensembleProvider, int sessionTimeoutMs, int connectionTimeoutMs, org.apache.zookeeper.Watcher watcher, RetryPolicy retryPolicy, boolean canBeReadOnly, ConnectionHandlingPolicy connectionHandlingPolicy) -
Uses of RetryPolicy in org.apache.curator.ensemble.exhibitor
Constructors in org.apache.curator.ensemble.exhibitor with parameters of type RetryPolicy Constructor Description ExhibitorEnsembleProvider(Exhibitors exhibitors, ExhibitorRestClient restClient, java.lang.String restUriPath, int pollingMs, RetryPolicy retryPolicy) -
Uses of RetryPolicy in org.apache.curator.retry
Classes in org.apache.curator.retry that implement RetryPolicy Modifier and Type Class Description classBoundedExponentialBackoffRetryRetry policy that retries a set number of times with an increasing (up to a maximum bound) sleep time between retriesclassExponentialBackoffRetryRetry policy that retries a set number of times with increasing sleep time between retriesclassRetryForeverRetryPolicyimplementation that always allowsRetry.classRetryNTimesRetry policy that retries a max number of timesclassRetryOneTimeA retry policy that retries only onceclassRetryUntilElapsedA retry policy that retries until a given amount of time elapses
-