All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalecube.config.keyvalue.KeyValueConfigRepository Maven / Gradle / Ivy

package io.scalecube.config.keyvalue;

import java.util.List;

/** Generic key-value config data access interface. */
public interface KeyValueConfigRepository {

  /**
   * Retrieves all key-value pairs under given config name.
   *
   * @param configName a config name.
   * @return list of key-value entries.
   * @throws Exception in case of any issue happened when accessing config data source.
   */
  List findAll(KeyValueConfigName configName) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy