Method: Couchbase::Options::GetAndTouch#initialize
- Defined in:
- lib/couchbase/options.rb
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAndTouch
Creates an instance of options for Collection#get_and_touch
216 217 218 219 220 221 222 223 224 |
# File 'lib/couchbase/options.rb', line 216 def initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span) @transcoder = transcoder yield self if block_given? end |