class Cassandra::Protocol::StatusChangeEventResponse
Constants
- TYPE
Attributes
address[R]
change[R]
port[R]
type[R]
Public Class Methods
new(*args)
click to toggle source
# File lib/cassandra/protocol/responses/status_change_event_response.rb 29 def initialize(*args) 30 @change, @address, @port = args 31 @type = TYPE 32 end
Public Instance Methods
to_s()
click to toggle source
# File lib/cassandra/protocol/responses/status_change_event_response.rb 34 def to_s 35 %(EVENT #{@type} #{@change} #{@address}:#{@port}) 36 end