This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
close()
public
Close the connection.
If this is an instance returned by #open_server, then this stops listening
for new connections
altogether. If this is an instance returned by #open or by #accept, then it
closes this particular client-server session.
# File lib/drb/drb.rb, line 929
def close
if @socket
@socket.close
@socket = nil
end
end