Method: Window#join_threads
- Defined in:
- lib/drydock/console.rb
#join_threads ⇒ Object
300 301 302 303 304 305 306 307 308 309 310 311 |
# File 'lib/drydock/console.rb', line 300 def join_threads begin @threads.each do |t| t.join end rescue Interrupt ensure @threads.each do |t| t.kill end end end |