If you always want them to execut from A1 to C3, just put them all in
the same queue and they will execute in the order that you queue them.

On Apr 6, 11:29 pm, CMF <[email protected]> wrote:
> if I have many projects, says, [A1,A2,A3], [B1,B2,B3], [C1,C2,C3]
> I want the projects sequence be
> A1->A2->A3->B1->B2->B3->C1->C2->C3
>
> But if I Trigger B1and C1 when A1 is undergoing
> The sequence will be  A1->A2,B1,C1 ->A3,B2,C2->B3,C3
> how can I solve it?
>
> my config:
>
> <queue name="Q1" lockqueues="Q2,Q3" />
> <queue name="Q2" lockqueues="Q1,Q3" />
> <queue name="Q3" lockqueues="Q1,Q2" />
>
> A1 queue="Q1"
> A2 queue="Q1"
> A3 queue="Q1"
>
> B1 queue="Q2"
> B2 queue="Q2"
> B3 queue="Q2"
>
> C1 queue="Q3"
> C2 queue="Q3"
> C3 queue="Q3"

Reply via email to