Class: Couchbase::Options::LookupInAllReplicas

Inherits:
Base
  • Object
show all
Defined in:
lib/couchbase/options.rb

Overview

Instance Attribute Summary collapse

Attributes inherited from Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(transcoder: JsonTranscoder.new, read_preference: :no_preference, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ LookupInAllReplicas

Creates an instance of options for Collection#lookup_in_all_replicas

Parameters:

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

    used for encoding

  • read_preference (Symbol) (defaults to: :no_preference)

    decides how the replica nodes will be selected.

    :no_preference

    no preference and will select any available replica. This is the default

    :selected_server_group

    restrict to nodes in Cluster#preferred_server_group

  • 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:

[View source]

1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'lib/couchbase/options.rb', line 1110

def initialize(transcoder: JsonTranscoder.new,
               read_preference: :no_preference,
               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
  @read_preference = read_preference
  yield self if block_given?
end

Instance Attribute Details

#read_preferenceSymbol

Returns:

  • (Symbol)

1095
1096
1097
# File 'lib/couchbase/options.rb', line 1095

def read_preference
  @read_preference
end

#transcoderJsonTranscoder, #decode(String)

Returns:


1094
1095
1096
# File 'lib/couchbase/options.rb', line 1094

def transcoder
  @transcoder
end