Task Queue and Dependencies

0
We have a two-step import process into our application.  Both steps are executed within a task queue so it runs outside of the application.  There's a dependency, though.  The first step must complete successfully before the second step can start.     I've been trying various approaches but nothing seems to work.  Is it possible to use Task Queues when there's a dependency?  Any recommendations would be appreciated.
asked
1 answers
0

The most simple solution is to not start both tasks from your main microflow, but the second at the end of the first. In other words:

  • Start the first task as you do now: run it in a taskqueue. 
  • Start the second task with a microflow-call, in a taskqueue, at the end of the microflow of the first task.
answered