Back to Socket Io Client Swift

SocketIOClientStatus

docs/Enums/SocketIOClientStatus.html

16.1.1757 B
Original Source

SocketIOClientStatus

@objc public enum SocketIOClientStatus : Int

Represents the state of the client.

`

                notConnected
                `

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

Declaration

Swift

case notConnected

`

                disconnected
                `

The client was once connected, but not anymore.

Declaration

Swift

case disconnected

`

                connecting
                `

The client is in the process of connecting.

Declaration

Swift

case connecting

`

                connected
                `

The client is currently connected.

Declaration

Swift

case connected