Interface ConfigStore

All Known Implementing Classes:
ConfigMapStore, ConsulConfigStore, GitConfigStore, RedisConfigStore, VaultConfigStore, ZookeeperConfigStore

public interface ConfigStore
Defines a configuration store.
Author:
Clement Escoffier
  • Method Summary

    Modifier and Type
    Method
    Description
    Closes the configuration store.
    get()
    Retrieves the configuration store in this store.
  • Method Details

    • get

      Future<Buffer> get()
      Retrieves the configuration store in this store.
      Returns:
      a Future of the asynchronous result.
    • close

      Future<Void> close()
      Closes the configuration store.
      Returns:
      a Future of the asynchronous result.