io.getunleash.UnleashContextProvider 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;
public interface UnleashContextProvider {
UnleashContext getContext();
static UnleashContextProvider getDefaultProvider() {
return () -> UnleashContext.builder().build();
}
}