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

cloud.prefab.client.util.NoopCache 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.util;

import java.util.concurrent.ExecutionException;

public class NoopCache implements Cache {

  @Override
  public byte[] get(String s) throws ExecutionException, InterruptedException {
    return null;
  }

  @Override
  public void set(String key, int expiryInSeconds, byte[] bytes) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy