Class: Couchbase::Collection::GetAndLockOptions

Inherits:
Couchbase::CommonOptions show all
Defined in:
lib/couchbase/collection_options.rb

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]

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

#transcoderJsonTranscoder

Returns transcoder used for decoding.

Returns:


66
67
68
# File 'lib/couchbase/collection_options.rb', line 66

def transcoder
  @transcoder
end