Method: Bosh::ThreadPool#wrap

Defined in:
lib/common/thread_pool.rb

#wrapObject



18
19
20
21
22
23
24
25
# File 'lib/common/thread_pool.rb', line 18

def wrap
  begin
    yield self
    wait
  ensure
    shutdown
  end
end