cloud.prefab.client.util.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefab-cloud-java Show documentation
Show all versions of prefab-cloud-java Show documentation
API Client for https://prefab.cloud: rate limits, feature flags and semaphores as a service
The newest version!
package cloud.prefab.client.util;
import java.util.concurrent.ExecutionException;
public interface Cache {
byte[] get(String s) throws ExecutionException, InterruptedException;
void set(String key, int expiryInSeconds, byte[] bytes);
}