com.launchdarkly.client.CustomEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
import com.google.gson.JsonElement;
class CustomEvent extends Event {
private final JsonElement data;
CustomEvent(String key, LDUser user, JsonElement data) {
super("custom", key, user);
this.data = data;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy