RemonState
@objc
public enum RemonState : Int, CustomStringConvertible
Remon의 상태 INIT: Remon을 생성하여 서버와 연결되기까지 과정을 의미
-
Declaration
Swift
case READY
-
객체를 생성하여 서버와 웹소켓으로 연결되는 과정의 상태를 의미
Declaration
Swift
case INIT
-
채널 생성및 접속이 완료된 상황. 통화인 경우 상대편 기다리는 상태
Declaration
Swift
case CREATE
-
상대편 채널에 접속중일 때의 상태
Declaration
Swift
case CONNECT
-
방송 생성 후 상태
Declaration
Swift
case COMPLETE
-
통신 연결 후 빠져나갔을 때의 상태
Declaration
Swift
case CLOSE
-
Declaration
Swift
public var description: String { get }