Class ControlCommandType
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.packets.controlcommand.ControlCommandType
-
public final class ControlCommandType extends Enum
Represents the type of a ControlCommand packet. The type of a Control Command influences the way the Console interprets the packet.For example, if a Control Command packet has a type of ControlCommandType.ClearAll, the entire Console is reset when this packet arrives. Also have a look at the corresponding Session.clearAll method.
This class is fully threadsafe.
-
-
Field Summary
Fields Modifier and Type Field Description static ControlCommandTypeClearAllInstructs the Console to reset the whole Console.static ControlCommandTypeClearAutoViewsInstructs the Console to clear all AutoViews.static ControlCommandTypeClearLogInstructs the Console to clear all Log Entries.static ControlCommandTypeClearProcessFlowInstructs the Console to clear all Process Flow entries.static ControlCommandTypeClearWatchesInstructs the Console to clear all Watches.
-
-
-
Field Detail
-
ClearLog
public static final ControlCommandType ClearLog
Instructs the Console to clear all Log Entries.
-
ClearWatches
public static final ControlCommandType ClearWatches
Instructs the Console to clear all Watches.
-
ClearAutoViews
public static final ControlCommandType ClearAutoViews
Instructs the Console to clear all AutoViews.
-
ClearAll
public static final ControlCommandType ClearAll
Instructs the Console to reset the whole Console.
-
ClearProcessFlow
public static final ControlCommandType ClearProcessFlow
Instructs the Console to clear all Process Flow entries.
-
-