PlanetKitDisconnectSource

@objc
@frozen
public enum PlanetKitDisconnectSource : Int
extension PlanetKitDisconnectSource: CustomStringConvertible

An enumeration representing the source of disconnection in PlanetKit.

  • The source of disconnection is undefined.

    Declaration

    Swift

    case undefined = 0
  • The callee is the source of disconnection.

    Declaration

    Swift

    case callee = 1
  • The caller is the source of disconnection.

    Declaration

    Swift

    case caller = 2
  • A participant is the source of disconnection.

    Declaration

    Swift

    case participant = 3
  • The cloud server is the source of disconnection.

    Declaration

    Swift

    case cloudServer = 4
  • The app server is the source of disconnection.

    Declaration

    Swift

    case appServer = 5

CustomStringConvertible

  • A textual representation of PlanetKitDisconnectSource instance.

    Declaration

    Swift

    public var description: String { get }