るりまサーチ

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

別のキーワード

  1. drb thread
  2. thread exit
  3. thread abort_on_exception
  4. thread abort_on_exception=
  5. etc sc_thread_threads_max

ライブラリ

クラス

検索結果

Thread::Queue#num_waiting -> Integer (38250.0)

キューを待っているスレッドの数を返します。

...キューを待っているスレッドの数を返します。

//emlist[例][ruby]{
require 'thread'

q = SizedQueue.new(1)
q.push(1)
t
= Thread.new { q.push(2) }
sleep 0.05 until t.stop?
q.num_waiting # => 1

q.pop
t
.join
//}...