CommandState

public enum CommandState: Int

Enum represents state of the Command.

  • SENDING Command

    Declaration

    Swift

    case SENDING = 1
  • Command is published to the Target.

    Declaration

    Swift

    case DELIVERED = 2
  • Target returns execution result but not completed all actions successfully.

    Declaration

    Swift

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

    Declaration

    Swift

    case DONE = 4