Class ConnectionState
- java.lang.Object
-
- org.bidib.jbidibc.netbidib.server.ConnectionState
-
public class ConnectionState extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConnectionState.PhaseEnums for each phase.
-
Field Summary
Fields Modifier and Type Field Description static StringNOT_CONNECTEDString to use to indicate that currently no connection is established.static io.netty.util.AttributeKey<String>REMOTE_ADDRESS_KEYKey to retrieve the remote address from the session.static io.netty.util.AttributeKey<ConnectionState.Phase>STATE_KEYKey to retrieve the state from the session.
-
Constructor Summary
Constructors Constructor Description ConnectionState()
-
-
-
Field Detail
-
NOT_CONNECTED
public static final String NOT_CONNECTED
String to use to indicate that currently no connection is established.- See Also:
- Constant Field Values
-
STATE_KEY
public static final io.netty.util.AttributeKey<ConnectionState.Phase> STATE_KEY
Key to retrieve the state from the session.
-
REMOTE_ADDRESS_KEY
public static final io.netty.util.AttributeKey<String> REMOTE_ADDRESS_KEY
Key to retrieve the remote address from the session.
-
-