CommandState

public enum CommandState: String

Enum represents state of the Command.

  • Command is sending

    Declaration

    Swift

    case sending = "SENDING"
  • Command is send but failed.

    Declaration

    Swift

    case sendFailed = "SEND_FAILED"
  • Target returns execution result but not completed all actions successfully.

    Declaration

    Swift

    case incomplete = "INCOMPLETE"
  • Target returns execution result and all actions successfully done.

    Declaration

    Swift

    case done = "DONE"