stop

Thread.stop â nil
Class Public methods

Stops execution of the current thread, putting it into a âsleep'' state, and schedules execution of another thread.

1
2
3
4
5
a = Thread.new { print "a"; Thread.stop; print "c" }
sleep 0.1 while a.status!='sleep'
print "b"
a.run
a.join

produces:

1
abc
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.