class Cql::Protocol::SupportedResponse
Attributes
options[R]
Public Class Methods
decode(protocol_version, buffer, length, trace_id=nil)
click to toggle source
# File lib/cql/protocol/responses/supported_response.rb, line 12 def self.decode(protocol_version, buffer, length, trace_id=nil) new(buffer.read_string_multimap) end
new(options)
click to toggle source
# File lib/cql/protocol/responses/supported_response.rb, line 8 def initialize(options) @options = options end
Public Instance Methods
to_s()
click to toggle source
# File lib/cql/protocol/responses/supported_response.rb, line 16 def to_s %(SUPPORTED #{options}) end