るりまサーチ (Ruby 3.1)

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

別のキーワード

  1. _builtin push
  2. csv push
  3. queue push
  4. table push
  5. psych push

ライブラリ

クラス

検索結果

Thread::Queue#num_waiting -> Integer (63361.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
//}