in src/Microsoft.Azure.WebJobs.Extensions.Dapr/Bindings/DaprInvokeMethodAsyncCollector.cs [49:61]
public async Task FlushAsync(CancellationToken cancellationToken = default)
{
while (this.requests.TryDequeue(out InvokeMethodParameters item))
{
await this.daprService.InvokeMethodAsync(
this.attr.DaprAddress,
item.AppId!,
item.MethodName!,
item.HttpVerb!,
item.Body,
cancellationToken);
}
}