method

stop?

v1_8_7_72 - Show latest stable - Class: Thread
stop?()
public

Returns true if thr is dead or sleeping.

   a = Thread.new { Thread.stop }
   b = Thread.current
   a.stop?   #=> true
   b.stop?   #=> false