smartinspectpython.siprocessfloweventargs

Module: siprocessfloweventargs.py

Revision History

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

@export
class SIProcessFlowEventArgs:

This class is used by the SmartInspect.ProcessFlow event.

It has only one public class member named ProcessFlow. This member is a property, which just returns the sent packet.

Threadsafety:

This class is fully thread-safe.

SIProcessFlowEventArgs(processFlow: smartinspectpython.siprocessflow.SIProcessFlow)

Initializes a new instance of the class.

Arguments:
  • processFlow (SIProcessFlow): The Process Flow packet which caused the event.

Returns the ProcessFlow packet, which has just been sent.

@export
class SIProcessFlowEventHandler:

This is the event handler type for the SmartInspect.ProcessFlowEvent event.

SIProcessFlowEventHandler( sender: object, e: smartinspectpython.siprocessfloweventargs.SIProcessFlowEventArgs)

Initializes a new instance of the class.

Arguments:
  • sender (object): The object which fired the event.
  • e (SIProcessFlowEventArgs): Arguments that contain detailed information related to the event.