Method: ThreadPool#shutdown

Defined in:
lib/tpkg/thread_pool.rb

#shutdownObject Also known as: join



94
95
96
97
# File 'lib/tpkg/thread_pool.rb', line 94

def shutdown
  @workers.each { |w| w.stop }
  @workers = []
end