Couchbase C++ SDK
1.4.0 (rev. 59aa900)
Toggle main menu visibility
Loading...
Searching...
No Matches
search_result.hxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/*
3
* Copyright 2020-Present Couchbase, Inc.
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
18
#pragma once
19
20
#include <
couchbase/date_range_facet_result.hxx
>
21
#include <
couchbase/numeric_range_facet_result.hxx
>
22
#include <
couchbase/search_meta_data.hxx
>
23
#include <
couchbase/search_row.hxx
>
24
#include <
couchbase/term_facet_result.hxx
>
25
26
#include <chrono>
27
#include <cinttypes>
28
#include <optional>
29
#include <vector>
30
31
namespace
couchbase
32
{
33
#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
34
class
internal_search_result;
35
#endif
36
44
class
search_result
45
{
46
public
:
47
search_result
();
52
explicit
search_result
(internal_search_result internal);
53
~search_result
();
54
55
search_result
(
const
search_result
&) =
delete
;
56
search_result
&
operator=
(
const
search_result
&) =
delete
;
57
58
search_result
(
search_result
&&) noexcept;
59
search_result
& operator=(
search_result
&&) noexcept;
60
70
[[nodiscard]] auto
meta_data
() const -> const
search_meta_data
&;
71
72
[[nodiscard]] auto
rows
() const -> const std::vector<
search_row
>&;
73
74
[[nodiscard]] auto
facets
() const
75
-> const std::map<std::
string
, std::shared_ptr<
search_facet_result
>>&;
76
77
private:
78
std::unique_ptr<internal_search_result> internal_;
79
};
80
}
// namespace couchbase
couchbase::search_facet_result
Definition
search_facet_result.hxx:30
couchbase::search_meta_data
Stores any non-rows results related to the execution of a particular N1QL search.
Definition
search_meta_data.hxx:42
couchbase::search_result::meta_data
auto meta_data() const -> const search_meta_data &
Returns the search_meta_data giving access to the additional metadata associated with this search.
couchbase::search_result::search_result
search_result(const search_result &)=delete
couchbase::search_result::search_result
search_result()
couchbase::search_result::search_result
search_result(internal_search_result internal)
couchbase::search_result::search_result
search_result(search_result &&) noexcept
couchbase::search_result::rows
auto rows() const -> const std::vector< search_row > &
couchbase::search_result::operator=
search_result & operator=(const search_result &)=delete
couchbase::search_result::~search_result
~search_result()
couchbase::search_result::facets
auto facets() const -> const std::map< std::string, std::shared_ptr< search_facet_result > > &
couchbase::search_row
Search Metrics contains the search result metrics containing counts and timings.
Definition
search_row.hxx:39
date_range_facet_result.hxx
couchbase
Represents a single item from the result of scan().
Definition
allow_querying_search_index_options.hxx:28
numeric_range_facet_result.hxx
search_meta_data.hxx
search_row.hxx
term_facet_result.hxx
couchbase
search_result.hxx
Generated by
1.17.0