On Mon, Oct 6, 2008 at 9:53 PM, rainer <[email protected]> wrote:
>
> Hi list,
>
> i just used a custom WF for the first time.
> And there was one question arrising:
>
> Is the following possible:
>
> <participant ref="group-publishers, group-foobar"/>
>
> Can i assign an activation for two groups?
>
> So i could keep the default WF running and add my own...

Hi Rainer,

you'd have to do

---8<---
<concurrence>
  <participant ref="group-a" />
  <participant ref="group-b" />
</concurrence>
--->8---

But that would imply that both groups "proceed" the workitem.

If you want only one reply :

---8<---
<concurrence count="1">
  <participant ref="group-a" />
  <participant ref="group-b" />
</concurrence>
--->8---

with that "count", as soon as 1 participant replies, the workitem of
the other participant is removed and the flow resumes after the
concurrence.

Best regards,

John

----------------------------------------------------------------
for list details see
http://documentation.magnolia.info/
----------------------------------------------------------------

Reply via email to