Class: Couchbase::Options::Ping
- Inherits:
-
Object
- Object
- Couchbase::Options::Ping
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Bucket#ping
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.
Ping.new.freeze
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) {|self| ... } ⇒ Ping
constructor
Creates an instance of options for Bucket#ping.
- #to_backend ⇒ Object private
Constructor Details
#initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) {|self| ... } ⇒ Ping
Creates an instance of options for Bucket#ping
@@param [Array<Symbol>] service_types The service types to limit this diagnostics request
1830 1831 1832 1833 1834 1835 1836 1837 |
# File 'lib/couchbase/options.rb', line 1830 def initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) @report_id = report_id @service_types = service_types @timeout = timeout yield self if block_given? end |
Instance Attribute Details
#report_id ⇒ String
1819 1820 1821 |
# File 'lib/couchbase/options.rb', line 1819 def report_id @report_id end |
#service_types ⇒ Array<Symbol>
1820 1821 1822 |
# File 'lib/couchbase/options.rb', line 1820 def service_types @service_types end |
#timeout ⇒ Integer, #in_milliseconds
1821 1822 1823 |
# File 'lib/couchbase/options.rb', line 1821 def timeout @timeout end |
Instance Method Details
#to_backend ⇒ Object
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.
1840 1841 1842 1843 1844 1845 1846 |
# File 'lib/couchbase/options.rb', line 1840 def to_backend { timeout: Utils::Time.extract_duration(@timeout), service_types: @service_types, report_id: @report_id, } end |