public static enum ReactorChannel.State extends java.lang.Enum<ReactorChannel.State>
| Enum Constant and Description |
|---|
CLOSED
The ReactorChannel connection is closed and the channel is no longer usable.
|
DOWN
The ReactorChannel connection is down and there is no connection recovery.
|
DOWN_RECONNECTING
The ReactorChannel connection is down and connection recovery will be started.
|
EDP_RT
The ReactorChannel connection is waiting for authentication.
|
EDP_RT_DONE
The ReactorChannel connection is waiting for service discovery.
|
EDP_RT_FAILED |
INITIALIZING
The ReactorChannel is initializing its connection.
|
READY
The ReactorChannel connection is ready.
|
UNKNOWN
The ReactorChannel is in unknown state.
|
UP
The ReactorChannel connection is up.
|
| Modifier and Type | Method and Description |
|---|---|
static ReactorChannel.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReactorChannel.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReactorChannel.State UNKNOWN
public static final ReactorChannel.State INITIALIZING
public static final ReactorChannel.State UP
public static final ReactorChannel.State READY
public static final ReactorChannel.State DOWN
public static final ReactorChannel.State DOWN_RECONNECTING
public static final ReactorChannel.State CLOSED
public static final ReactorChannel.State EDP_RT
public static final ReactorChannel.State EDP_RT_DONE
public static final ReactorChannel.State EDP_RT_FAILED
public static ReactorChannel.State[] values()
for (ReactorChannel.State c : ReactorChannel.State.values()) System.out.println(c);
public static ReactorChannel.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 nullCopyright @ 2019 Thomson Reuters. All Rights Reserved.