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
In #17, a process sequence with predecessor requirements will be generated. Use this sequence to actually execute process steps when predecessors are complete.
What solution would you like?
An execution of the process will complete the following steps:
Iterate through the entire sequence, calling a method that returns a completable future immediately.
The method will take a collection of predecessor step completable futures (generated in step 1) as an argument, and delay further execution until an an allOf() completable future is complete.
When the step is actually complete, complete the future, which will be used by a future step.
Do you have any additional context?
This is the same type of execution currently used in plugins to execute a sequence of events. It just needs to be adapted to rely on multiple predecessor steps.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
In #17, a process sequence with predecessor requirements will be generated. Use this sequence to actually execute process steps when predecessors are complete.
What solution would you like?
An execution of the process will complete the following steps:
Do you have any additional context?
This is the same type of execution currently used in plugins to execute a sequence of events. It just needs to be adapted to rely on multiple predecessor steps.
The text was updated successfully, but these errors were encountered: