Uses of Interface
io.helidon.config.spi.RetryPolicy
-
Packages that use RetryPolicy Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of RetryPolicy in io.helidon.config
Classes in io.helidon.config that implement RetryPolicy Modifier and Type Class Description class
SimpleRetryPolicy
A default retry policy implementation withScheduledExecutorService
.Methods in io.helidon.config that return RetryPolicy Modifier and Type Method Description static RetryPolicy
RetryPolicies. justCall()
An implementation that invokes the requested method just once, without any execute.static RetryPolicy
MetaConfig. retryPolicy(Config metaConfig)
Load a retry policy based on its meta configuration.Methods in io.helidon.config that return types with arguments of type RetryPolicy Modifier and Type Method Description Optional<RetryPolicy>
AbstractSource. retryPolicy()
Optional<RetryPolicy>
PrefixedConfigSource. retryPolicy()
Method parameters in io.helidon.config with type arguments of type RetryPolicy Modifier and Type Method Description B
AbstractSourceBuilder. retryPolicy(Supplier<? extends RetryPolicy> policy)
-
Uses of RetryPolicy in io.helidon.config.spi
Methods in io.helidon.config.spi that return RetryPolicy Modifier and Type Method Description default RetryPolicy
RetryPolicy. get()
Methods in io.helidon.config.spi that return types with arguments of type RetryPolicy Modifier and Type Method Description default Optional<RetryPolicy>
Source. retryPolicy()
Retry policy configured on this config source.Method parameters in io.helidon.config.spi with type arguments of type RetryPolicy Modifier and Type Method Description B
Source.Builder. retryPolicy(Supplier<? extends RetryPolicy> policy)
Configure a retry policy to be used with this source.
-