Package org.cometd.client
Enum BayeuxClient.State
- All Implemented Interfaces:
Serializable,Comparable<BayeuxClient.State>,java.lang.constant.Constable
- Enclosing class:
- BayeuxClient
public static enum BayeuxClient.State extends Enum<BayeuxClient.State>
The states that a BayeuxClient may assume
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTEDState assumed when this BayeuxClient is connected to the Bayeux serverCONNECTINGState assumed when the connect is being sent for the first timeDISCONNECTEDState assumed before the handshake and when the disconnect is completedDISCONNECTINGState assumed when the disconnect is being sentHANDSHAKENState assumed when the handshake is received, but before connectingHANDSHAKINGState assumed when the handshake is being sentREHANDSHAKINGState assumed when a first handshake failed and the handshake is retried, or when the Bayeux server requests a re-handshakeTERMINATINGState assumed when the disconnect is received but terminal actions must be performedUNCONNECTEDState assumed after the handshake when the connection is broken -
Method Summary
Modifier and Type Method Description static BayeuxClient.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static BayeuxClient.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNCONNECTED
State assumed after the handshake when the connection is broken -
HANDSHAKING
State assumed when the handshake is being sent -
REHANDSHAKING
State assumed when a first handshake failed and the handshake is retried, or when the Bayeux server requests a re-handshake -
HANDSHAKEN
State assumed when the handshake is received, but before connecting -
CONNECTING
State assumed when the connect is being sent for the first time -
CONNECTED
State assumed when this BayeuxClient is connected to the Bayeux server -
DISCONNECTING
State assumed when the disconnect is being sent -
TERMINATING
State assumed when the disconnect is received but terminal actions must be performed -
DISCONNECTED
State assumed before the handshake and when the disconnect is completed
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-