CameraLivePlayState

@objc(GSCameraLivePlayState)
public enum CameraLivePlayState : Int, CustomStringConvertible

Camera live stream playback state.

  • Stream is ‘State.stopped’.

    Declaration

    Swift

    case none
  • Stream is either ‘State.starting’ or ‘State.suspended’ in which case this indicates that playback will start once the stream is started, or ‘State.started’ in which case this indicates that playback is currently ongoing.

    Declaration

    Swift

    case playing
  • Stream is either ‘State.starting’ or ‘State.suspended’ in which case this indicates that playback will pause once the stream is started, or ‘State.started’ in which case this indicates that playback is currently paused.

    Declaration

    Swift

    case paused
  • Debug description.

    Declaration

    Swift

    public var description: String { get }