This method is deprecated or moved on the latest stable version. The last existing version (v1_9_3_392) is shown here.
alive?()
Check to see if this connection is alive.
# File lib/drb/drb.rb, line 954 def alive? return false unless @socket if IO.select([@socket], nil, nil, 0) close return false end true end