ECommandState¶
-
class ECommandState : public EEnumBase<int>¶
Possible states a command can be in.
-
static ECommandState Idle¶
Command is not in queue.
-
static ECommandState Queued¶
Command is in queue waiting to be executed.
-
static ECommandState Running¶
Command queue is currently executing the command.
-
static ECommandState Completed¶
Command execution completed. If desired, the command can be reused by calling
ICommandSequence::Reuse()
.
-
static ECommandState Failed¶
Command execution failed. The run error can be retrieved using
ICommandBase::GetRunException()
. If desired, the command can be reused by callingICommandSequence::Reuse()
.
-
ECommandState::ECommandState(int val)¶
- Parameters
val –
-
static ECommandState Idle¶