I just have a general question on how flow works
Are these jobs inside the children array run parallely?
flowProducer.add({
name: 'renovate-interior',
queueName: 'renovate',
children: [
{ name: 'paint', data: { place: 'ceiling' }, queueName: 'steps' },
{ name: 'paint', data: { place: 'walls' }, queueName: 'steps' },
{ name: 'fix', data: { place: 'floor' }, queueName: 'steps' },
],
});
Because I'm trying to craete a flow where there can be two parallel jobs, and those parallel jobs would have its own children as well.
Just wondering if these jobs are run parallely in a children array?