I have a queue of size n on whose every item I am performing a async func simultaneously on n items, whenever one of func(item) is complete I enqueue an element to queue, now i need a signal for this enqueuing,
Is there any way to get callback from a async func which is part of API,
foreach item in queue
{
//do async function Task<string>
}
when queue finished one async call
add more item in queue
there is no callback to check if func is complete.