Class: Couchbase::Cluster::SearchResult
- Inherits:
-
Object
- Object
- Couchbase::Cluster::SearchResult
- Defined in:
- lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb more...
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize {|self| ... } ⇒ SearchResult
constructor
A new instance of SearchResult.
- #success? ⇒ Boolean
Constructor Details
#initialize {|self| ... } ⇒ SearchResult
Returns a new instance of SearchResult.
1575 1576 1577 |
# File 'lib/couchbase/search_options.rb', line 1575 def initialize yield self if block_given? end |
Instance Attribute Details
#facets ⇒ Hash<String => SearchFacetResult>
1565 1566 1567 |
# File 'lib/couchbase/search_options.rb', line 1565 def facets @facets end |
#meta_data ⇒ SearchMetaData
1568 1569 1570 |
# File 'lib/couchbase/search_options.rb', line 1568 def @meta_data end |
#rows ⇒ Array<SearchRow>
1562 1563 1564 |
# File 'lib/couchbase/search_options.rb', line 1562 def rows @rows end |
Instance Method Details
#success? ⇒ Boolean
1570 1571 1572 |
# File 'lib/couchbase/search_options.rb', line 1570 def success? .errors.nil? || .errors.empty? end |