class Qpid::Proton::Util::Condition

Attributes

description[R]
info[R]
name[R]

Public Class Methods

new(name, description = nil, info = nil) click to toggle source
# File lib/util/condition.rb, line 26
def initialize(name, description = nil, info = nil)
  @name = name
  @description = description
  @info = info
end

Public Instance Methods

==(other) click to toggle source

@private

# File lib/util/condition.rb, line 38
def ==(other)
  ((other.class = self.class) &&
   (other.name == self.name) && 
   (other.description == self.description) &&
   (other.info == self.info))
end
to_s() click to toggle source

@private

# File lib/util/condition.rb, line 33
def to_s
  "Condition(#{@name}, #{@description}, #{@info})"
end