class Concurrent::RubyThreadPoolExecutor

def status

This method is deprecated and will be removed soon.

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