PlayerCastState

public enum PlayerCastState : String, Decodable

Indicates the state of the casting processs

  • Means that there is no cast device detected or that the device is not available (e.g. not powered, not connected to the internet).

    Declaration

    Swift

    case unavailable = "unavailable"
  • Means that there is a cast device detected, but that THEOplayer is not casting or controlling the current cast session.

    Declaration

    Swift

    case available = "available"
  • Means that THEOplayer is in the process of connecting to the cast device.

    Declaration

    Swift

    case connecting = "connecting"
  • Means that THEOplayer is casting to the cast device.

    Declaration

    Swift

    case connected = "connected"