io.getunleash.metric.UnleashMetricService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unleash-client-java Show documentation
Show all versions of unleash-client-java Show documentation
A client library for Unleash
The newest version!
package io.getunleash.metric;
import java.util.Set;
public interface UnleashMetricService {
void register(Set strategies);
void count(String toggleName, boolean active);
void countVariant(String toggleName, String variantName);
}