Class ProcessFlowType
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.packets.processflow.ProcessFlowType
-
public final class ProcessFlowType extends Enum
Represents the type of ProcessFlow packet. The type of Process Flow entry specifies the way the Console interprets this packet. For example, if a Process Flow entry has a type of ProcessFlowType.EnterThread, the Console interprets this packet as information about a new thread of your application.This class is fully threadsafe.
-
-
Field Summary
Fields Modifier and Type Field Description static ProcessFlowTypeEnterMethodInstructs the Console to enter a new method.static ProcessFlowTypeEnterProcessInstructs the Console to enter a new process.static ProcessFlowTypeEnterThreadInstructs the Console to enter a new thread.static ProcessFlowTypeLeaveMethodInstructs the Console to leave a method.static ProcessFlowTypeLeaveProcessInstructs the Console to leave a process.static ProcessFlowTypeLeaveThreadInstructs the Console to leave a thread.
-
-
-
Field Detail
-
EnterMethod
public static final ProcessFlowType EnterMethod
Instructs the Console to enter a new method.
-
LeaveMethod
public static final ProcessFlowType LeaveMethod
Instructs the Console to leave a method.
-
EnterThread
public static final ProcessFlowType EnterThread
Instructs the Console to enter a new thread.
-
LeaveThread
public static final ProcessFlowType LeaveThread
Instructs the Console to leave a thread.
-
EnterProcess
public static final ProcessFlowType EnterProcess
Instructs the Console to enter a new process.
-
LeaveProcess
public static final ProcessFlowType LeaveProcess
Instructs the Console to leave a process.
-
-