ReadyState
public enum ReadyState : Equatable
                The enumeration defines the state an IOStream client is in.
- 
                  
                  
IOStream has been created.
Declaration
Swift
case initialized - 
                  
                  
IOStream waiting for new method.
Declaration
Swift
case open - 
                  
                  
IOStream play() has been called.
Declaration
Swift
case play - 
                  
                  
IOStream play and server was accepted as playing
Declaration
Swift
case playing - 
                  
                  
IOStream publish() has been called
Declaration
Swift
case publish - 
                  
                  
IOStream publish and server accpted as publising.
Declaration
Swift
case publishing(muxer: any IOMuxer) - 
                  
                  
IOStream close() has been called.
Declaration
Swift
case closed