class AndSon::AndSonClient

Public Instance Methods

==(other) click to toggle source
Calls superclass method
# File lib/and-son/client.rb, line 49
def ==(other)
  other.kind_of?(self.class) ? self.hash == other.hash : super
end
Also aliased as: eql?
call(*args, &block) click to toggle source

proxy the call method to the call runner

# File lib/and-son/client.rb, line 39
def call(*args, &block); self.call_runner.call(*args, &block); end
call_runner() click to toggle source
# File lib/and-son/client.rb, line 41
def call_runner
  AndSon::CallRunner.new(host, port)
end
eql?(other)
Alias for: ==
hash() click to toggle source
# File lib/and-son/client.rb, line 45
def hash
  self.call_runner.hash
end