Class: DRb::GWIdConv

Inherits:
DRbIdConv show all
Defined in:
lib/drb/gw.rb

Instance Method Summary (collapse)

Methods inherited from DRbIdConv

#to_id

Instance Method Details

- (Object) to_obj(ref)



6
7
8
9
10
11
# File 'lib/drb/gw.rb', line 6

def to_obj(ref)
  if Array === ref && ref[0] == :DRbObject
    return DRbObject.new_with(ref[1], ref[2])
  end
  super(ref)
end