smartinspectpython.siprocessflowtype

Module: siprocessflowtype.py

Revision History

Date Version Description
2023/05/30 3.0.0.0 Initial Version.

@export
class SIProcessFlowType(smartinspectpython.sienumcomparable.SIEnumComparable):

Represents the type of a Process Flow 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 SIProcessFlowType.EnterThread, the Console interprets this packet as information about a new thread of your application.

EnterMethod = <SIProcessFlowType.EnterMethod: 0>

Instructs the Console to enter a new method.

LeaveMethod = <SIProcessFlowType.LeaveMethod: 1>

Instructs the Console to leave a method.

EnterThread = <SIProcessFlowType.EnterThread: 2>

Instructs the Console to enter a new thread.

LeaveThread = <SIProcessFlowType.LeaveThread: 3>

Instructs the Console to leave a thread.

EnterProcess = <SIProcessFlowType.EnterProcess: 4>

Instructs the Console to enter a new process.

LeaveProcess = <SIProcessFlowType.LeaveProcess: 5>

Instructs the Console to leave a process.