Uses of Interface
io.helidon.config.spi.ChangeWatcher
Packages that use ChangeWatcher
Package
Description
Provides interfaces and classes for loading and working with immutable, tree-structured
configuration data.
Configuration SPI that defines the behavior developers can implement to extend the config system.
-
Uses of ChangeWatcher in io.helidon.config
Classes in io.helidon.config that implement ChangeWatcherModifier and TypeClassDescriptionfinal classThis change watcher is backed byWatchServiceto fire a polling event with every change on monitoredPath.Methods in io.helidon.config that return ChangeWatcherModifier and TypeMethodDescriptionstatic ChangeWatcher<?> MetaConfig.changeWatcher(Config metaConfig) Load a change watcher based on its meta configuration.Methods in io.helidon.config that return types with arguments of type ChangeWatcherModifier and TypeMethodDescriptionprotected Optional<ChangeWatcher<Object>> AbstractSource.changeWatcher()A change watcher of this source, if it implementsWatchableSourceand has one configured.DirectoryConfigSource.changeWatcher()FileConfigSource.changeWatcher()FileOverrideSource.changeWatcher()UrlConfigSource.changeWatcher()UrlOverrideSource.changeWatcher()Methods in io.helidon.config with parameters of type ChangeWatcherModifier and TypeMethodDescriptionprotected BAbstractSourceBuilder.changeWatcher(ChangeWatcher<U> changeWatcher) Configure a change watcher.DirectoryConfigSource.Builder.changeWatcher(ChangeWatcher<Path> changeWatcher) FileConfigSource.Builder.changeWatcher(ChangeWatcher<Path> changeWatcher) FileOverrideSource.Builder.changeWatcher(ChangeWatcher<Path> changeWatcher) UrlConfigSource.Builder.changeWatcher(ChangeWatcher<URL> changeWatcher) UrlOverrideSource.Builder.changeWatcher(ChangeWatcher<URL> changeWatcher) -
Uses of ChangeWatcher in io.helidon.config.spi
Subinterfaces with type arguments of type ChangeWatcher in io.helidon.config.spiModifier and TypeInterfaceDescriptioninterfaceJava service loader service to create a polling strategy factory based on meta configuration.Methods in io.helidon.config.spi that return types with arguments of type ChangeWatcherModifier and TypeMethodDescriptionWatchableSource.changeWatcher()If a change watcher is configured with this source, return it.Methods in io.helidon.config.spi with parameters of type ChangeWatcherModifier and TypeMethodDescriptionWatchableSource.Builder.changeWatcher(ChangeWatcher<T> changeWatcher) Configure the change watcher to be used with this source.