01-05-2013 06:23 AM
01-05-2013 11:15 AM
/**
* Takes the given outgoing transitions, and potentially reusing
* the given list of executions that were previously joined.
*/
void takeAll(List<PvmTransition> outgoingTransitions, List<ActivityExecution> joinedExecutions);01-06-2013 07:07 AM
01-06-2013 03:34 PM
01-07-2013 06:32 AM
01-07-2013 07:00 AM
… but, since I'm not so smart
I'm writing a special kind of gateway implemening…
01-07-2013 11:11 AM
Can't the businessrule not be implemented using the existing gateways?
public class MyGateway implements ActivityBehavior {
public void execute(ActivityExecution execution) throws Exception {
List<PvmTransition> transitions = findTransitionsWithMyFunnyRules();
execution.inactivate();
execution.takeAll(transitions, new ArrayList<ActivityExecution>());
}
}
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.