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