io.harness.cf.client.common.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ff-java-server-sdk Show documentation
Show all versions of ff-java-server-sdk Show documentation
Harness Feature Flag Java Server SDK
The newest version!
package io.harness.cf.client.common;
import java.util.List;
import lombok.NonNull;
public interface Cache {
void set(@NonNull String key, @NonNull Object value);
Object get(@NonNull String key);
void delete(@NonNull String key);
List keys();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy