Method: IceGrid::NodeDynamicInfo#==

Defined in:
lib/IceGrid/Admin.rb

#==(other) ⇒ Object



857
858
859
860
861
862
863
# File 'lib/IceGrid/Admin.rb', line 857

def ==(other)
    return false if !other.is_a? ::IceGrid::NodeDynamicInfo or
        @info != other.info or
        @servers != other.servers or
        @adapters != other.adapters
    true
end