Click or drag to resize

CommandQueueActionType Enumeration

Enum for specifying the command queue action type in the CommandQueueActionPerformedEventArgs objects.

Namespace:  SD.Tools.Algorithmia
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntax
public enum CommandQueueActionType
Members
  Member nameValueDescription
CommandExecuted0 A command was executed
CommandEnqueued1 A command was enqueued
UndoPerformed2 A command was undo-ed
RedoPerformed3 A command was redo-ed
CommandQueuePushed4 A command's command queue was pushed onto the command stack. (so any spawned commands are enqueued inside the command itself)
CommandQueuePopped5 A command's command queue was popped from the command stack.
CommandDequeued6 A command was dequeued and the current command pointer was pushed back.
See Also