206件ヒット
[201-206件を表示]
(0.062秒)
別のキーワード
種類
- インスタンスメソッド (152)
- 特異メソッド (54)
ライブラリ
- ビルトイン (206)
キーワード
- [] (12)
-
abort
_ on _ exception (24) -
abort
_ on _ exception= (24) -
add
_ trace _ func (12) - alive? (12)
- fetch (8)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - run (12)
-
set
_ trace _ func (12) - stop (12)
-
thread
_ variable _ get (12) -
thread
_ variable _ set (12) - wakeup (12)
検索結果
先頭1件
-
Thread
. stop -> nil (13.0) -
他のスレッドから Thread#run メソッドで再起動されるまで、カレ ントスレッドの実行を停止します。
...ドから Thread#run メソッドで再起動されるまで、カレ
ントスレッドの実行を停止します。
//emlist[例][ruby]{
a = Thread.new { print "a"; Thread.stop; print "c" }
sleep 0.1 while a.status!='sleep'
print "b"
a.run
a.join
# => "abc"
//}
@see Thread#run, Thread#wakeup...