= private = protected
to_id(obj)
Convert an object into a reference id.
This implementation returns the object’s __id__ in the local object space.
# File lib/drb/drb.rb, line 379 def to_id(obj) obj.nil? ? nil : obj.__id__ end