class Cassandra::Protocol::ReadyResponse

Public Instance Methods

==(rs)
Alias for: eql?
eql?(rs) click to toggle source
   # File lib/cassandra/protocol/responses/ready_response.rb
25 def eql?(rs)
26   rs.is_a?(self.class)
27 end
Also aliased as: ==
hash() click to toggle source
   # File lib/cassandra/protocol/responses/ready_response.rb
30 def hash
31   @h ||= begin
32     h = 17
33     h = 31 * h + 'READY'.hash
34     h
35   end
36 end
to_s() click to toggle source
   # File lib/cassandra/protocol/responses/ready_response.rb
38 def to_s
39   'READY'
40 end