Class: Couchbase::Collection::ReplaceOptions
- Inherits:
-
Couchbase::CommonOptions
- Object
- Couchbase::CommonOptions
- Couchbase::Collection::ReplaceOptions
- Defined in:
- lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb more...
Instance Attribute Summary collapse
-
#cas ⇒ Integer
Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
-
#durability_level ⇒ :none, ...
Level of durability.
-
#expiry ⇒ Integer
Expiration time to associate with the document.
-
#transcoder ⇒ JsonTranscoder
Transcoder used for encoding.
Attributes inherited from Couchbase::CommonOptions
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize {|| ... } ⇒ ReplaceOptions
constructor
A new instance of ReplaceOptions.
Constructor Details
#initialize {|| ... } ⇒ ReplaceOptions
Returns a new instance of ReplaceOptions.
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
#cas ⇒ Integer
Returns 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.
262 263 264 |
# File 'lib/couchbase/collection_options.rb', line 262 def durability_level @durability_level end |
#expiry ⇒ Integer
Returns expiration time to associate with the document.
253 254 255 |
# File 'lib/couchbase/collection_options.rb', line 253 def expiry @expiry end |
#transcoder ⇒ JsonTranscoder
Returns transcoder used for encoding.
256 257 258 |
# File 'lib/couchbase/collection_options.rb', line 256 def transcoder @transcoder end |