Given such activities in JPDL:
<foreach in="#{itms}" name="foreach1" var="itm">
<transition name="to_task_activity" to="task_activity" />
</foreach>
<task name="task_activity">
<transition to="join1" />
</task>
<join multiplicity="#{count}" name="join1">
<transition to="further_activity" />
</join>
Is it possible (and how) to use another construction instead of this, so that task_activity may be done not asynchronously, but sequentially for each item from the collection itms?