mowshon / bounded_pool_executor

Bounded Process&Thread Pool Executor
MIT License
61 stars 6 forks source link

Docs - #6

Open ndvbd opened 4 years ago

ndvbd commented 4 years ago

It says "BoundedProcessPoolExecutor will put a new worker in queue only when another worker has finished his work." - but what happens when there are no free workers? code blocks on this action?

mowshon commented 4 years ago

@ndvbd code will waiting for free workers. It doesn't block entire script.