DRb::GWIdConv (Class)

In: drb/gw.rb
Parent: DRbIdConv

Methods

to_obj  

Public Instance methods

[Source]

# File drb/gw.rb, line 6
    def to_obj(ref)
      if Array === ref && ref[0] == :DRbObject
        it = DRbObject.new(nil)
        it.reinit(ref[1], ref[2])
        return it
      end
      super(ref)
    end

[Validate]