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

cloud.prefab.client.ConfigStore Maven / Gradle / Ivy

Go to download

API Client for https://prefab.cloud: rate limits, feature flags and semaphores as a service

The newest version!
package cloud.prefab.client;

import cloud.prefab.client.config.ConfigElement;
import java.util.Collection;

public interface ConfigStore {
  Collection getKeys();

  ConfigElement getElement(String key);

  boolean containsKey(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy