Sha256: 856020e34668e678cd534a117d0f2ecde741060b000d2277a654fd001b30b23e

Contents?: true

Size: 942 Bytes

Versions: 4

Compression:

Stored size: 942 Bytes

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) A query hit, or response metadta
  #   (if #rflags contains @ref LCB_RESP_F_FINAL). The format of the row will
  #   be JSON, and should be decoded by a JSON decoded in your application.
  # :nrow ::
  #   (Integer) Length of #row
  # :htresp ::
  #   (RESPHTTP) Original HTTP response obejct
  class RESPFTS < 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/respfts.rb
mt-libcouchbase-1.4.02 lib/mt-libcouchbase/ext/mt-libcouchbase/respfts.rb
mt-libcouchbase-1.4.01 lib/mt-libcouchbase/ext/mt-libcouchbase/respfts.rb
mt-libcouchbase-1.4.0 lib/mt-libcouchbase/ext/mt-libcouchbase/respfts.rb