class Cassandra::Protocol::SupportedResponse
Attributes
options[R]
Public Class Methods
new(options)
click to toggle source
# File lib/cassandra/protocol/responses/supported_response.rb 27 def initialize(options) 28 @options = options 29 end
Public Instance Methods
to_s()
click to toggle source
# File lib/cassandra/protocol/responses/supported_response.rb 31 def to_s 32 %(SUPPORTED #{options}) 33 end