Good Morning,

Someone could help me how to execute multiple times a same job using differents parameters ASYNC ?

I have a job:

<job id="monthCalculator" incrementer="monthIncrementer">
</job>

and Another job that a I want to use to process many differents months together:

<job id="MultiMonthCalculator">
<split id="FLUXO-UFS" task-executor="taskAsyncExecutor" >
<flow>
<step id="FLOW1" >
<job ref="monthCalculator" job-parameters-extractor="jobParametersExtractor"/>
</step>
</flow>
<flow>
<step id="FLOW2" >
<job ref="monthCalculator" job-parameters-extractor="jobParametersExtractor"/>
</step>
</flow>
</split>
</job>

How can i do to use to make a different execution for "flow/step" ?
Ex:
FLOW1, MONTH = 05
FLOW2, MONTH = 06

Thank's