るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. date now
  2. time now
  3. _builtin now
  4. datetime now
  5. handle rtld_now

ライブラリ

検索結果

ThreadsWait#join_nowait(*threads) -> () (18340.0)

終了を待つスレッドの対象として、threads で指定されたスレッドを指定します。 しかし、実際には終了をまちません。

...eadsを加えます。

require 'thwait'

threads = []
5.times {|i|
threads << Thread.new { sleep 1; p Thread.current }
}

thall = ThreadsWait.new
p thall.threads #=> []
thall.join_nowait(*threads)
p thall.threads #=> [#<Thread:0x21638 sleep>, #<Thread:0x215ac sleep>, #<Thread:0x...