Class: Couchbase::Management::Options::Search::GetIndexStats

Inherits:
Options::Base
  • Object
show all
Defined in:
lib/couchbase/management/search_index_manager.rb,
/home/runner/work/couchbase-ruby-client/couchbase-ruby-client/lib/couchbase/management/search_index_manager.rb

Overview

Instance Attribute Summary

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(timeout: nil, retry_strategy: nil, parent_span: nil) {|self| ... } ⇒ GetIndexStats

Creates an instance of options for SearchIndexManager#get_index_stats

Parameters:

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

    the time in milliseconds allowed for the operation to complete

  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

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

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

Yield Parameters:



133
134
135
136
137
138
# File 'lib/couchbase/management/search_index_manager.rb', line 133

def initialize(timeout: nil,
               retry_strategy: nil,
               parent_span: nil)
  super
  yield self if block_given?
end