Class ProcessFlowEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.gurock.smartinspect.packets.processflow.ProcessFlowEvent
-
- All Implemented Interfaces:
Serializable
public final class ProcessFlowEvent extends EventObject
This class is used by the SmartInspectListener.onProcessFlow event of the SmartInspect class. It has only one public class member named getProcessFlow. This member is a method, which just returns the sent packet. This class is fully threadsafe.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ProcessFlowEvent(Object source, ProcessFlow processFlow)Creates and initializes a ProcessFlowEvent instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProcessFlowgetProcessFlow()Returns the ProcessFlow packet, which has just been sent.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
ProcessFlowEvent
public ProcessFlowEvent(Object source, ProcessFlow processFlow)
Creates and initializes a ProcessFlowEvent instance.- Parameters:
source- The object which fired the eventprocessFlow- The ProcessFlow packet which has just been sent
-
-
Method Detail
-
getProcessFlow
public ProcessFlow getProcessFlow()
Returns the ProcessFlow packet, which has just been sent.- Returns:
- The ProcessFlow packet which has just been sent
-
-