Flowdock
_dump(lv) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/drb/gw.rb, line 44
    def _dump(lv)
      if DRb.uri == @uri
        if Array === @ref && @ref[0] == :DRbObject
          Marshal.dump([@ref[1], @ref[2]])
        else
          Marshal.dump([@uri, @ref]) # ??
        end
      else
        Marshal.dump([DRb.uri, [:DRbObject, @uri, @ref]])
      end
    end
Register or log in to add new notes.