summaryrefslogtreecommitdiff
path: root/lib/drb/eq.rb
blob: 6328c81202a19f613156a12b0ac99d0df5962bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module DRb
  class DRbObject
    def ==(other)
      return false unless DRbObject === other
     (@ref == other.__drbref) && (@uri == other.__drburi)
    end

    def hash
      [@uri, @ref].hash
    end

    alias eql? ==
  end
end