io.harness.cf.client.api.Evaluation 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.api;
import com.google.gson.JsonObject;
import io.harness.cf.client.dto.Target;
public interface Evaluation {
boolean boolVariation(
String identifier, Target target, boolean defaultValue, FlagEvaluateCallback callback);
String stringVariation(
String identifier, Target target, String defaultValue, FlagEvaluateCallback callback);
double numberVariation(
String identifier, Target target, double defaultValue, FlagEvaluateCallback callback);
JsonObject jsonVariation(
String identifier, Target target, JsonObject defaultValue, FlagEvaluateCallback callback);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy