Uses of Interface
io.helidon.config.spi.ChangeWatcher.ChangeEvent
-
Packages that use ChangeWatcher.ChangeEvent 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 ChangeWatcher.ChangeEvent in io.helidon.config
Method parameters in io.helidon.config with type arguments of type ChangeWatcher.ChangeEvent Modifier and Type Method Description void
FileSystemWatcher. start(Path target, Consumer<ChangeWatcher.ChangeEvent<Path>> listener)
-
Uses of ChangeWatcher.ChangeEvent in io.helidon.config.etcd
Method parameters in io.helidon.config.etcd with type arguments of type ChangeWatcher.ChangeEvent Modifier and Type Method Description void
EtcdWatcher. start(EtcdConfigSourceBuilder.EtcdEndpoint endpoint, Consumer<ChangeWatcher.ChangeEvent<EtcdConfigSourceBuilder.EtcdEndpoint>> listener)
-
Uses of ChangeWatcher.ChangeEvent in io.helidon.config.spi
Methods in io.helidon.config.spi that return ChangeWatcher.ChangeEvent Modifier and Type Method Description static <T> ChangeWatcher.ChangeEvent<T>
ChangeWatcher.ChangeEvent. create(T target, ChangeEventType type)
static <T> ChangeWatcher.ChangeEvent<T>
ChangeWatcher.ChangeEvent. create(T target, ChangeEventType type, Instant instant)
Method parameters in io.helidon.config.spi with type arguments of type ChangeWatcher.ChangeEvent Modifier and Type Method Description void
ChangeWatcher. start(T target, Consumer<ChangeWatcher.ChangeEvent<T>> listener)
Start watching a target for changes.
-