Package com.amazonaws.ivs.broadcast
Enum Class TransmissionStats.NetworkHealth
java.lang.Object
java.lang.Enum<TransmissionStats.NetworkHealth>
com.amazonaws.ivs.broadcast.TransmissionStats.NetworkHealth
- All Implemented Interfaces:
- Serializable,- Comparable<TransmissionStats.NetworkHealth>,- Constable
- Enclosing class:
- TransmissionStats
NetworkHealth represents the current health of the network. BAD means the network is struggling to keep up and the broadcast
 may be experiencing latency spikes. The SDK may also reduce the quality of the broadcast on low values in order to keep it stable, depending
 on the minimum allowed bitrate in the broadcast configuration. A value of EXCELLENT means the network is easily able to keep up with the current demand
 and the SDK will be trying to increase the broadcast quality over time, depending on the maximum allowed bitrate.
 Values like MEDIUM or LOW are not necessarily bad, it just means the network is being saturated, but it is still able to keep up. The broadcast is
 still likely stable.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TransmissionStats.NetworkHealth[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
EXCELLENT
- 
HIGH
- 
MEDIUM
- 
LOW
- 
BAD
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-