Sha256: 0d2ae8d3e7638a144de5cb48f26fbcae16edda06ebd474387b8a3f90c56005c6

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

module MTLibcouchbase::Ext
  # (Not documented)
  #
  # ## Fields:
  # :cookie ::
  #   (FFI::Pointer(*Void))
  # :key ::
  #   (FFI::Pointer(*Void))
  # :nkey ::
  #   (Integer)
  # :cas ::
  #   (Integer)
  # :rc ::
  #   (ErrorT)
  # :version ::
  #   (Integer)
  # :rflags ::
  #   (Integer)
  # :row ::
  #   (String) Current result row. If #rflags has the ::LCB_RESP_F_FINAL bit set, then
  #   this field does not contain the actual row, but the remainder of the
  #   data not included with the resultset; e.g. the JSON surrounding
  #   the "results" field with any errors or metadata for the response.
  # :nrow ::
  #   (Integer) Length of the row
  # :htresp ::
  #   (RESPHTTP) Raw HTTP response, if applicable
  class RESPN1QL < FFI::Struct
    layout :cookie, :pointer,
           :key, :pointer,
           :nkey, :ulong,
           :cas, :ulong_long,
           :rc, ErrorT,
           :version, :ushort,
           :rflags, :ushort,
           :row, :pointer,
           :nrow, :ulong,
           :htresp, RESPHTTP.by_ref
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mt-libcouchbase-1.4.03 lib/mt-libcouchbase/ext/mt-libcouchbase/respn1ql.rb
mt-libcouchbase-1.4.02 lib/mt-libcouchbase/ext/mt-libcouchbase/respn1ql.rb
mt-libcouchbase-1.4.01 lib/mt-libcouchbase/ext/mt-libcouchbase/respn1ql.rb
mt-libcouchbase-1.4.0 lib/mt-libcouchbase/ext/mt-libcouchbase/respn1ql.rb