Class: Couchbase::Options::LookupInAnyReplica

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

Overview

Constant Summary collapse

DEFAULT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

LookupInAnyReplica.new.freeze

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, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ LookupInAnyReplica

Creates an instance of options for Collection#lookup_in_any_replica

Parameters:

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



1044
1045
1046
1047
1048
1049
1050
1051
1052
# File 'lib/couchbase/options.rb', line 1044

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

Instance Attribute Details

#access_deletedBoolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


1063
1064
1065
# File 'lib/couchbase/options.rb', line 1063

def access_deleted
  @access_deleted
end

#transcoderJsonTranscoder, #decode(String)

Returns:



1032
1033
1034
# File 'lib/couchbase/options.rb', line 1032

def transcoder
  @transcoder
end

Instance Method Details

#to_backendObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1055
1056
1057
1058
1059
# File 'lib/couchbase/options.rb', line 1055

def to_backend
  {
    timeout: Utils::Time.extract_duration(@timeout),
  }
end