class Concurrent::RubyThreadPoolExecutor
def status
Returns an array with the status of each thread in the pool
def status warn '[DEPRECATED] `status` is deprecated and will be removed soon.' mutex.synchronize { @pool.collect { |worker| worker.status } } end