Enum Class ConnectionState
- All Implemented Interfaces:
Serializable
,Comparable<ConnectionState>
,Constable
Enumeration that defines the state of a StreamLink connection to a Liberator.
You can obtain the ConnectionState
by calling getConnectionState
on a ConnectionStatusEvent
.
Although hints regarding possible transitions between ConnectionState
s are
given, you should not imply that this is a strict contract because network conditions
may cause undocumented transitions.
The generalised sequence after calling streamlink.connect()
is as follows:
CONNECTING
-> CONNECTED
-> LOGGEDIN
. At any point in
time the connection could be lost which would raise the LOST
, at this point StreamLink would
attempt to connect again to a Liberator server, starting the sequence once more.
With this in mind, it is possible to map these onto a "traffic light" component indicating connection health using the following mappings:
- RED
DISCONNECTED
- GREEN
LOGGEDIN
- AMBER All other
ConnectionState
s.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA network connection has been established to the Liberator.A connection attempt is in progress.StreamLink has failed to retrieve the credentials.StreamLink has successfully retrieved the credentials.Disconnected from the Liberator.The client has been ejected from the Liberator.A connection attempt has failed.The client is now logged into the Liberator.The client could not login to the Liberator.The connection to the Liberator has been lost.The connection has been paused by the application.The Liberator session has been reconnected.StreamLink is attempting to obtain a set of credentials to log in to the server.A connection to the Liberator is not possible due to no network being available. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionState
Returns the enum constant of this class with the specified name.static ConnectionState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISCONNECTED
Disconnected from the Liberator. When this state is raised by the StreamLink library all subscriptions have removed. StreamLink will not perform any activity until you call
connect()
on theStreamLink
object. -
CONNECTING
A connection attempt is in progress. If the connection attempt is successful, a
CONNECTED
state will be raised, if the connection fails, theFAILED
event will be raised. -
FAILED
A connection attempt has failed. StreamLink will attempt to connect to a Liberator on the configured server list.
-
CONNECTED
A network connection has been established to the Liberator. StreamLink will now attempt to log in to the Liberator session.
-
RETRIEVINGCREDENTIALS
StreamLink is attempting to obtain a set of credentials to log in to the server.
-
CREDENTIALSRETRIEVED
StreamLink has successfully retrieved the credentials.
-
CREDENTIALSRETRIEVALFAILED
StreamLink has failed to retrieve the credentials.
-
LOGGEDIN
The client is now logged into the Liberator. In this state it is possible for StreamLink applications to receive subscription updates and receive responses to commands.
-
LOGINFAILED
The client could not login to the Liberator. StreamLink will not perform any more connection attempts and will switch to the
DISCONNECTED
state. -
EJECTED
The client has been ejected from the Liberator. StreamLink will not perform any more connection attempts and will switch to the
DISCONNECTED
state. -
LOST
The connection to the Liberator has been lost. StreamLink will attempt to connect and establish a new session with a configured Liberator.
-
RECONNECTED
The Liberator session has been reconnected. This should be treated as an informational event, StreamLink will switch to the
LOGGEDIN
state to simplify implementation of your application (see the traffic light example above). -
UNREACHABLE
A connection to the Liberator is not possible due to no network being available.
-
PAUSED
The connection has been paused by the application. This state is a direct result of the application causing {@link com.caplin.streamlink.StreamLink.pause()}. StreamLink is held in a "frozen" state pending a call to {@link com.caplin.streamlink.StreamLink.resume()}.
-
-
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
-