io.getunleash.event.VariantImpressionEvent 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
package io.getunleash.event;
import io.getunleash.UnleashContext;
public class VariantImpressionEvent extends ImpressionEvent {
private String variantName;
public String getVariantName() {
return variantName;
}
public VariantImpressionEvent(
String featureName, boolean enabled, UnleashContext context, String variantName) {
super(featureName, enabled, context);
this.variantName = variantName;
}
}