SocketIOClientStatus

@objc public enum SocketIOClientStatus : Int

Represents the state of the client.

  • The client has never been connected. Or the client has been reset.

    Declaration

    Swift

    case notConnected
  • The client was once connected, but not anymore.

    Declaration

    Swift

    case disconnected
  • The client is in the process of connecting.

    Declaration

    Swift

    case connecting
  • The client is currently connected.

    Declaration

    Swift

    case connected