108件ヒット
[101-108件を表示]
(0.140秒)
ライブラリ
- ビルトイン (108)
キーワード
- fetch (8)
- join (24)
- name= (10)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - run (12)
- status (12)
- wakeup (12)
検索結果
-
Thread
# wakeup -> self (3020.0) -
停止状態(stop)のスレッドを実行可能状態(run)にします。
...stop)のスレッドを実行可能状態(run)にします。
@raise ThreadError 死んでいるスレッドに対して実行すると発生します。
//emlist[例][ruby]{
c = Thread.new { Thread.stop; puts "hey!" }
sleep 0.1 while c.status!='sleep'
c.wakeup
c.join
# => "hey!"
//}
@see Thread#......run, Thread.stop...