cancel
Showing results for 
Search instead for 
Did you mean: 

Two different flow instance async task problem

xiangyuely
Champ in-the-making
Champ in-the-making
I have two different flow process A and B
Process A:startEvent—async Task A—endEvent
Process B:startEvent—async Task B—endEvent

async Task A:update Table A
async Task B:select Table A

when this two processes start at the same time,Task B can not get the latest records of Table A even if Task A has updated the records of Table A


1 REPLY 1

jbarrez
Star Contributor
Star Contributor
If both tasks are async .. there is no guarantee when they will be called or in what order.
If you need synchronisation you might need to model it explicitely, like using a signal event.