You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DISCLAIMER: this issue describes path computation for a single instance/case only. So the implementation will go to the CasePathResolver class as it differs from PathResolver which is a generic implementation that both deals with single instance or all instances of a process.
Is your feature request related to a problem? Please describe.
In #16, we allow to pass pending elements in the input of the path computation but we are not inferring any pending elements that follow completed elements.
Describe the solution you'd like
First compute the path with provided completed and pending elements (#16).
Then infer direct (i.e. following the latest completed element in the graph) pending elements when enabled with an option see #23.
This includes
the following flownode/shape considered as pending.
the following flow/edge considered as completed (the flow between the latest completed and the inferred pending element). They are in the "outgoing "array of the "latest" element.
Questions
Note: depending on the answers, the question can lead to the creation of a new issue.
How do we find the "latest" elements? in particular, there may be several terminal elements!
DISCLAIMER: this issue describes path computation for a single instance/case only. So the implementation will go to the
CasePathResolver
class as it differs fromPathResolver
which is a generic implementation that both deals with single instance or all instances of a process.Is your feature request related to a problem? Please describe.
In #16, we allow to pass pending elements in the input of the path computation but we are not inferring any pending elements that follow completed elements.
Describe the solution you'd like
First compute the path with provided completed and pending elements (#16).
Then infer direct (i.e. following the latest completed element in the graph) pending elements when enabled with an option see #23.
This includes
Questions
Note: depending on the answers, the question can lead to the creation of a new issue.
How do we find the "latest" elements? in particular, there may be several terminal elements!
If there are several pending candidates for pending elements, for instance the latest element is an exclusive gateway, how do we handle it (see [FEAT] CasePathResolver: categorize the elements returned in the inferred path #24)
How do we handle "hole" in the graph? In this case, a basic implementation would return false results
Completed gateways as "latest" element of the path
Tasks
The text was updated successfully, but these errors were encountered: