CamoControllerState
public enum CamoControllerState
An enum representing the state of the Camo controller.
-
When the Camo controller’s service is running, is it possible to accept connections from Camo Studio. By accessing the enclosed
CamoServiceState
, you can find more information on connections.Declaration
Swift
case running(CamoServiceState)
-
When the Camo controller’s service is shut down, no connections can be accepted from Camo Studio. Any code relating to Camo should be functionally disabled during this state.
Declaration
Swift
case shutdown