public static enum DataSourceStatusProvider.State extends java.lang.Enum<DataSourceStatusProvider.State>
DataSourceStatusProvider.Status.getState()
.Enum Constant and Description |
---|
INITIALIZING
The initial state of the data source when the SDK is being initialized.
|
INTERRUPTED
Indicates that the data source encountered an error that it will attempt to recover from.
|
OFF
Indicates that the data source has been permanently shut down.
|
VALID
Indicates that the data source is currently operational and has not had any problems since the
last time it received data.
|
Modifier and Type | Method and Description |
---|---|
static DataSourceStatusProvider.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSourceStatusProvider.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceStatusProvider.State INITIALIZING
If it encounters an error that requires it to retry initialization, the state will remain at
INITIALIZING
until it either succeeds and becomes VALID
, or permanently fails and
becomes OFF
.
public static final DataSourceStatusProvider.State VALID
In streaming mode, this means that there is currently an open stream connection and that at least one initial message has been received on the stream. In polling mode, it means that the last poll request succeeded.
public static final DataSourceStatusProvider.State INTERRUPTED
In streaming mode, this means that the stream connection failed, or had to be dropped due to some other error, and will be retried after a backoff delay. In polling mode, it means that the last poll request failed, and a new poll request will be made after the configured polling interval.
public static final DataSourceStatusProvider.State OFF
This could be because it encountered an unrecoverable error (for instance, the LaunchDarkly service rejected the SDK key; an invalid SDK key will never become valid), or because the SDK client was explicitly shut down.
public static DataSourceStatusProvider.State[] values()
for (DataSourceStatusProvider.State c : DataSourceStatusProvider.State.values()) System.out.println(c);
public static DataSourceStatusProvider.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null