Method: Couchbase::Options::Get#initialize
- Defined in:
- lib/couchbase/options.rb
#initialize(projections: [], with_expiry: false, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Get
Creates an instance of options for Collection#get
73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/couchbase/options.rb', line 73 def initialize(projections: [], with_expiry: false, 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) @projections = projections @with_expiry = with_expiry @transcoder = transcoder @preserve_array_indexes = false yield self if block_given? end |