public interface GovernanceContext<F>
Governance
.Modifier and Type | Method and Description |
---|---|
void |
doFlow(F key,
Object parameter)
Instigates a
JobSequence to be run in parallel to
Governance . |
void |
doFlow(int flowIndex,
Object parameter)
Similar to
doFlow(Object, Object) except that allows dynamic
instigation of flows. |
void doFlow(F key, Object parameter)
JobSequence
to be run in parallel to
Governance
.key
- Key identifying the JobSequence
to instigate.parameter
- Parameter for the first Task
of the
JobSequence
.void doFlow(int flowIndex, Object parameter)
Similar to doFlow(Object, Object)
except that allows dynamic
instigation of flows.
In other words, an Enum
is not required to define the possible
flows available.
flowIndex
- Index identifying the JobSequence
to instigate.parameter
- Parameter for the first Task
of the
JobSequence
.Copyright © 2005–2016. All rights reserved.