❔ how to add parallel processing?

Ppenance2/9/2023
I have following function:
[DeliveryHandler( Name = ReportsAPI.Commands.ReportsGenerate )]
public async Task OnReportsGenerate(
           IDeliveryHandlerContext context,
           ReportsGenerateArguments arguments )
{
      /// reports are generated sequentially for now
      /// think about parallel processing

      async Task GenerateProgress( ReportGenerateProgress progress )
      {
            /// fill progress payload
      }

      // generate report logic
}


I can call OnReportGenerate from bus and report will generate sequentially/ So.. how can I fix this?
And another question: how can I add progress?
Ppenance2/9/2023
I don't need solution
I'd like to receive any advices
RRaghu2/9/2023
I'm not sure what you're asking
AAccord2/10/2023
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.