docs/Enums/SocketIOStatus.html
@objc
public enum SocketIOStatus : Int, CustomStringConvertible
Represents state of a manager or client.
Cases
`
notConnected
`
The client/manager has never been connected. Or the client has been reset.
Swift
case notConnected
`
disconnected
`
The client/manager was once connected, but not anymore.
Swift
case disconnected
`
connecting
`
The client/manager is in the process of connecting.
Swift
case connecting
`
connected
`
The client/manager is currently connected.
Swift
case connected
Properties
`
active
`
Swift
public var active: Bool { get }
True if this client/manager is connected/connecting to a server.
`
description
`
Swift
public var description: String { get }