Sha256: 5257c7c93cf760da09d64dae8e1e56849d6fc05f9c72f4816239c17be2052d5d

Contents?: true

Size: 1.36 KB

Versions: 4

Compression:

Stored size: 1.36 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)
  # :vbid ::
  #   (Integer) < vBucket ID (for potential mapping)
  # :server_index ::
  #   (Integer) < Input server index
  # :cur_uuid ::
  #   (Integer) < UUID for this vBucket as known to the server
  # :persisted_seqno ::
  #   (Integer) < Highest persisted sequence
  # :mem_seqno ::
  #   (Integer) < Highest known sequence
  # :old_uuid ::
  #   (Integer) In the case where the command's uuid is not the most current, this
  #   contains the last known UUID
  # :old_seqno ::
  #   (Integer) If #old_uuid is nonzero, contains the highest sequence number persisted
  #   in the #old_uuid snapshot.
  class RESPOBSEQNO < FFI::Struct
    layout :cookie, :pointer,
           :key, :pointer,
           :nkey, :ulong,
           :cas, :ulong_long,
           :rc, ErrorT,
           :version, :ushort,
           :rflags, :ushort,
           :vbid, :ushort,
           :server_index, :ushort,
           :cur_uuid, :ulong_long,
           :persisted_seqno, :ulong_long,
           :mem_seqno, :ulong_long,
           :old_uuid, :ulong_long,
           :old_seqno, :ulong_long
  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/respobseqno.rb
mt-libcouchbase-1.4.02 lib/mt-libcouchbase/ext/mt-libcouchbase/respobseqno.rb
mt-libcouchbase-1.4.01 lib/mt-libcouchbase/ext/mt-libcouchbase/respobseqno.rb
mt-libcouchbase-1.4.0 lib/mt-libcouchbase/ext/mt-libcouchbase/respobseqno.rb