Package jadex.bpmn.runtime.handler
Class SplitInfo
java.lang.Object
jadex.bpmn.runtime.handler.SplitInfo
Keep information about a thread spawned at a split gateway used later when processing
the corresponding join.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the pathid.Get the path id.Gets the pathids.Get the path ids of the split.Gets the splitid.Get the split id.void
Sets the pathid.void
setPathids
(Set<String> pathids) Sets the pathids.void
setSplitid
(String splitid) Sets the splitid.
-
Field Details
-
splitid
The split id (the same for all threads spawned at the same split). -
pathid
The path id (unique for each spawned thread). -
pathids
All path ids belonging to the split id.
-
-
Constructor Details
-
SplitInfo
public SplitInfo() -
SplitInfo
Create a new split info.
-
-
Method Details
-
getSplitId
Get the split id. -
getPathId
Get the path id. -
getPathIds
Get the path ids of the split. -
getSplitid
Gets the splitid.- Returns:
- The splitid.
-
setSplitid
Sets the splitid.- Parameters:
splitid
- The splitid to set.
-
getPathid
Gets the pathid.- Returns:
- The pathid.
-
setPathid
Sets the pathid.- Parameters:
pathid
- The pathid to set.
-
getPathids
Gets the pathids.- Returns:
- The pathids.
-
setPathids
Sets the pathids.- Parameters:
pathids
- The pathids to set.
-