com.launchdarkly.client.UpdateProcessor 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 java.io.Closeable;
import java.io.IOException;
import java.util.concurrent.Future;
public interface UpdateProcessor extends Closeable {
/**
* Starts the client.
* @return {@link Future}'s completion status indicates the client has been initialized.
*/
Future start();
/**
* Returns true once the client has been initialized and will never return false again.
* @return
*/
boolean initialized();
void close() throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy