![JAR search and dependency download from the Maven repository](/logo.png)
io.getunleash.MoreOperations Maven / Gradle / Ivy
package io.getunleash;
import java.util.List;
import java.util.Optional;
public interface MoreOperations {
List getFeatureToggleNames();
Optional getFeatureToggleDefinition(String toggleName);
List evaluateAllToggles();
/**
* Evaluate all toggles using the provided context. This does not record the corresponding usage
* metrics for each toggle
*
* @param context
* @return
*/
List evaluateAllToggles(UnleashContext context);
void count(String toggleName, boolean enabled);
void countVariant(String toggleName, String variantName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy