Class: Couchbase::Collection::GetAndLockOptions
- Inherits:
-
Couchbase::CommonOptions
- Object
- Couchbase::CommonOptions
- Couchbase::Collection::GetAndLockOptions
- Defined in:
- lib/couchbase/collection_options.rb
Instance Attribute Summary collapse
-
#transcoder ⇒ JsonTranscoder
Transcoder used for decoding.
Attributes inherited from Couchbase::CommonOptions
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize {|self| ... } ⇒ GetAndLockOptions
constructor
A new instance of GetAndLockOptions.
Constructor Details
#initialize {|self| ... } ⇒ GetAndLockOptions
Returns a new instance of GetAndLockOptions.
69 70 71 72 |
# File 'lib/couchbase/collection_options.rb', line 69 def initialize @transcoder = JsonTranscoder.new yield self if block_given? end |
Instance Attribute Details
#transcoder ⇒ JsonTranscoder
Returns transcoder used for decoding.
66 67 68 |
# File 'lib/couchbase/collection_options.rb', line 66 def transcoder @transcoder end |