VideoPauseState
@objc
public enum VideoPauseState : Int, CaseIterable, CustomStringConvertible
VideoPauseState
describes the pause status of a video tile.
-
The video tile is not paused
Declaration
Swift
case unpaused = 0
-
The video tile has been paused by the user, and will only be unpaused if the user requests it to resume.
Declaration
Swift
case pausedByUserRequest = 1
-
The video tile has been paused to save on local downlink bandwidth. When the connection improves, it will be automatically unpaused by the client. User requested pauses will shadow this pause, but if the connection has not recovered on resume the tile will still be paused with this state.
Declaration
Swift
case pausedForPoorConnection = 2
-
Declaration
Swift
public var description: String { get }