Class: Couchbase::Collection::ReplaceOptions

Inherits:
Couchbase::CommonOptions show all
Defined in:
lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb
more...

Instance Attribute Summary collapse

Attributes inherited from Couchbase::CommonOptions

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize {|| ... } ⇒ ReplaceOptions

Returns a new instance of ReplaceOptions.

Yield Parameters:

[View source]

265
266
267
268
269
270
# File 'lib/couchbase/collection_options.rb', line 265

def initialize
  super
  @transcoder = JsonTranscoder.new
  @durability_level = :none
  yield self if block_given?
end

Instance Attribute Details

#casInteger

Returns Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.

Returns:

  • (Integer)

    Specifies a CAS value that will be taken into account on the server side for optimistic concurrency


259
260
261
# File 'lib/couchbase/collection_options.rb', line 259

def cas
  @cas
end

#durability_level:none, ...

Returns level of durability.

Returns:

  • (:none, :majority, :majority_and_persist_to_active, :persist_to_majority)

    level of durability


262
263
264
# File 'lib/couchbase/collection_options.rb', line 262

def durability_level
  @durability_level
end

#expiryInteger

Returns expiration time to associate with the document.

Returns:

  • (Integer)

    expiration time to associate with the document


253
254
255
# File 'lib/couchbase/collection_options.rb', line 253

def expiry
  @expiry
end

#transcoderJsonTranscoder

Returns transcoder used for encoding.

Returns:


256
257
258
# File 'lib/couchbase/collection_options.rb', line 256

def transcoder
  @transcoder
end