Uses of Interface
io.helidon.config.spi.PollingStrategy
-
Packages that use PollingStrategy Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.etcd Etcd configuration source.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of PollingStrategy in io.helidon.config
Methods in io.helidon.config that return PollingStrategy Modifier and Type Method Description PollingStrategy
PollingStrategies.FilesystemWatchBuilder. build()
Builds a new polling strategy.PollingStrategy
PollingStrategies.ScheduledBuilder. build()
Builds a new polling strategy.PollingStrategy
PollingStrategies.FilesystemWatchBuilder. get()
PollingStrategy
PollingStrategies.ScheduledBuilder. get()
static PollingStrategy
PollingStrategies. nop()
Provides a default polling strategy that does not fire an event at all. -
Uses of PollingStrategy in io.helidon.config.etcd
Classes in io.helidon.config.etcd that implement PollingStrategy Modifier and Type Class Description class
EtcdWatchPollingStrategy
Etcd watch strategy is based on etcd watch operation. -
Uses of PollingStrategy in io.helidon.config.spi
Methods in io.helidon.config.spi that return PollingStrategy Modifier and Type Method Description default PollingStrategy
PollingStrategy. get()
protected PollingStrategy
AbstractSource.Builder. pollingStrategy()
Returns polling-strategy property.Method parameters in io.helidon.config.spi with type arguments of type PollingStrategy Modifier and Type Method Description B
AbstractSource.Builder. pollingStrategy(Function<T,Supplier<PollingStrategy>> pollingStrategyProvider)
Sets the polling strategy that accepts key source attributes.B
AbstractSource.Builder. pollingStrategy(Supplier<PollingStrategy> pollingStrategySupplier)
Sets a polling strategy.
-