Class: Couchbase::Collection::GetAndLockOptions

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 {|self| ... } ⇒ GetAndLockOptions

Returns a new instance of GetAndLockOptions.

Yield Parameters:

[View source]

72
73
74
75
76
# File 'lib/couchbase/collection_options.rb', line 72

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

Instance Attribute Details

#transcoderJsonTranscoder

Returns transcoder used for decoding.

Returns:


69
70
71
# File 'lib/couchbase/collection_options.rb', line 69

def transcoder
  @transcoder
end