Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > thwaitライブラリ > ThreadsWaitクラス > empty?
empty? -> bool
[permalink][rdoc]同期されるスレッドが存在するならば true をかえします。
使用例
require 'thwait' threads = [] 3.times {|i| threads << Thread.new { sleep 1; p Thread.current } } thall = ThreadsWait.new p thall.threads.empty? #=> true thall.join(*threads) p thall.threads.empty? #=> false