るりまサーチ

最速Rubyリファレンスマニュアル検索!
6件ヒット [1-6件を表示] (0.005秒)
トップページ > クエリ:pty[x] > クラス:ThreadsWait[x]

別のキーワード

  1. pty open
  2. pty spawn
  3. pty getpty
  4. pty check
  5. pty pty

ライブラリ

検索結果

ThreadsWait#empty? -> bool (6101.0)

同期されるスレッドが存在するならば true をかえします。

...ッドが存在するならば 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...