class Cassandra::Protocol::RowsResultResponse

Attributes

metadata[R]
paging_state[R]
rows[R]

Public Class Methods

new(custom_payload, warnings, rows, metadata, paging_state, trace_id) click to toggle source
   # File lib/cassandra/protocol/responses/rows_result_response.rb
27 def initialize(custom_payload, warnings, rows, metadata, paging_state, trace_id)
28   super(custom_payload, warnings, trace_id)
29   @rows = rows
30   @metadata = metadata
31   @paging_state = paging_state
32 end

Public Instance Methods

to_s() click to toggle source
   # File lib/cassandra/protocol/responses/rows_result_response.rb
34 def to_s
35   %(RESULT ROWS #{@metadata} #{@rows})
36 end