Class: Couchbase::Options::LookupIn

Inherits:
Base
  • Object
show all
Defined in:
lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb

Overview

Options for Collection#lookup_in

Instance Attribute Summary collapse

Attributes inherited from Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(access_deleted: false, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ LookupIn

Creates an instance of options for Collection#lookup_in

Parameters:

  • access_deleted (Boolean) (defaults to: false)

    for internal use only: allows access to deleted documents that are in “tombstone” form

  • transcoder (JsonTranscoder, #decode(String)) (defaults to: JsonTranscoder.new)

    used for encoding

  • timeout (Integer, #in_milliseconds, nil) (defaults to: nil)
  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

  • client_context (Hash, nil) (defaults to: nil)

    the client context data, if set

  • parent_span (Span, nil) (defaults to: nil)

    if set holds the parent span, that should be used for this request

Yield Parameters:



760
761
762
763
764
765
766
767
768
769
770
# File 'lib/couchbase/options.rb', line 760

def initialize(access_deleted: 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)
  @access_deleted = access_deleted
  @transcoder = transcoder
  yield self if block_given?
end

Instance Attribute Details

#access_deletedBoolean

Returns:

  • (Boolean)


746
747
748
# File 'lib/couchbase/options.rb', line 746

def access_deleted
  @access_deleted
end

#transcoderJsonTranscoder, #decode(String)

Returns:



747
748
749
# File 'lib/couchbase/options.rb', line 747

def transcoder
  @transcoder
end