addRunsAfterRelationship
Class: padv.Process
Namespace: padv
Specify predecessor for task or subprocess
Syntax
addRunsAfterRelationship(process,Source=sourceTaskOrSubprocess,Predecessor=predecessorTaskOrSubprocess)
addRunsAfterRelationship(___,Name=Value)
Description
addRunsAfterRelationship(
specifies that in the process
,Source=sourceTaskOrSubprocess
,Predecessor=predecessorTaskOrSubprocess
)process
, the source should run after the
predecessor.
addRunsAfterRelationship(___,
specifies additional characteristics of the relationship by using one or more
Name=Value
)Name=Value
arguments. For example,
addRunsAfterRelationship(p1,Source=t2,Predecessor=t1,Override=true)
specifies that in process p1
, task t2
should run after
task t1
and that this relationship overrides
any other relationships defined between tasks
t1
and t2
in the process.