るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.348秒)

別のキーワード

  1. openssl new
  2. _builtin new
  3. _builtin inspect
  4. _builtin []
  5. _builtin to_s

ライブラリ

検索結果

ThreadGroup.new -> ThreadGroup (21287.0)

新たな ThreadGroup を生成して返します。

...たな ThreadGroup を生成して返します。

//emlist[例][ruby]{
thread
_group = ThreadGroup.new
thread
_group.add Thread.new { sleep 0.1; Thread.new { sleep 1 }; sleep 1 }
thread
_group.add Thread.new { sleep 2 }
sleep 0.5
thread
_group.list # => [#<Thread:0x007fc6f1842d70 sleep>, #<Thread:0x007...
...fc6f1842c80 sleep>, #<Thread:0x007fc6f080dba8 sleep>]
//}...