Enum Class ConnectorState
- All Implemented Interfaces:
Serializable
,Comparable<ConnectorState>
,Constable
IConnector
.- Author:
- Eike Stepper
- See Also:
- No Extend
- This interface is not intended to be extended by clients.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that theIConnector
has successfully managed to establish and negotiate the underlying physical connection and is ready now to perform actual communications.Indicates that theIConnector
is currently trying to establish an underlying physical connection like a TCP socket connection.Indicates that theIConnector
has not been connected yet or has been disconnected after being connected previously.Indicates that theIConnector
has successfully managed to establish the underlying physical connection and has currently delegated control over this connection to anINegotiator
. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectorState
Returns the enum constant of this class with the specified name.static ConnectorState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISCONNECTED
Indicates that theIConnector
has not been connected yet or has been disconnected after being connected previously.A connector is
DISCONNECTED
if and only if it is notactive
. A transition toCONNECTING
can be triggered by callingIConnector.connect(long)
orIConnector.connectAsync()
.- See Also:
-
IConnector.getState()
ILifecycle.isActive()
-
CONNECTING
Indicates that theIConnector
is currently trying to establish an underlying physical connection like a TCP socket connection.A connector can only be
CONNECTING
if it isactive
. As soon as the underlying physical connection is successfully established the state of the connector automatically transitions toNEGOTIATING
.- See Also:
-
IConnector.getState()
ILifecycle.isActive()
-
NEGOTIATING
Indicates that theIConnector
has successfully managed to establish the underlying physical connection and has currently delegated control over this connection to anINegotiator
.A connector can only be
NEGOTIATING
if it isactive
and a negotiator has been supplied. As soon as the negotiator has successfully negotiated both peers (or a negotiator has not been supplied) the state of the connector automatically transitions toCONNECTED
.Negotiators can implement arbitrary handshake protocols, challenge-response sequences or other authentication procedures. They can also be used to initially setup connection encryption if the connector implementation is not able to do so.
- See Also:
-
IConnector.getState()
ILifecycle.isActive()
-
CONNECTED
Indicates that theIConnector
has successfully managed to establish and negotiate the underlying physical connection and is ready now to perform actual communications.A connector can only be
CONNECTED
if it isactive
. A transition toDISCONNECTED
can be triggered by callingCloseable.close()
.- See Also:
-
IConnector.getState()
ILifecycle.isActive()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-