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

cloud.prefab.client.util.Cache Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy