com.github.anicolaspp.concurrent
Wraps a block within a concurrent tasks
Wraps a block within a concurrent tasks
Result type of the passed in block.
Block to be executed in concurrently.
A concurrent task, that is a Future[A].
Awaits for multiple concurrent tasks using a sliding windows so we don't have to hold all task results in memory at once.
Awaits for multiple concurrent tasks using a sliding windows so we don't have to hold all task results in memory at once.
Result type of each concurrent task.
Iterator of cuncurrent tasks.
The number of concurrent tasks we want to wait at a time.
An iterator that contains the result of executing each concurrent task.
TaskLevelConcurrentContext is used to control a multithreaded context within a Spark Task.