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
Methods in io.helidon.config that return RetryPolicy Modifier and Type Method Description RetryPolicy
RetryPolicies.Builder. build()
Builds a new execute policy.RetryPolicy
RetryPolicies.Builder. get()
static RetryPolicy
RetryPolicies. justCall()
An implementation that invokes the requested method just once, without any execute. -
Uses of RetryPolicy in io.helidon.config.spi
Methods in io.helidon.config.spi that return RetryPolicy Modifier and Type Method Description static RetryPolicy
RetryPolicy. create(Config metaConfig)
Constructs aRetryPolicy
from meta-configuration.default RetryPolicy
RetryPolicy. get()
protected RetryPolicy
AbstractSource.Builder. retryPolicy()
Retry policy configured in this builder.Method parameters in io.helidon.config.spi with type arguments of type RetryPolicy Modifier and Type Method Description B
AbstractSource.Builder. retryPolicy(Supplier<RetryPolicy> retryPolicySupplier)
Sets a supplier ofRetryPolicy
that will be responsible for invocation ofAbstractSource.load()
.
-