Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchIndexSearchDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
33
34public:
36 const ProviderInfo = ...;
37
38
41
42
45
48
50 const QueryArgs = ...;
51
52
54 constructor(*hash<auto> options);
55
56
58 constructor(RestClient::RestClient rest) ;
59
60
62 string getName();
63
64
66 *string getDesc();
67
68
70
75protected:
76 auto doRequestImpl(auto req, *hash<auto> request_options);
77public:
78
79
81
83protected:
84 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
85public:
86
87
89
91protected:
92 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
93public:
94
95
97 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
98
99};
100
102class ElasticSearchIndexSearchRequestDataType : public DataProvider::HashDataType {
103
104public:
105protected:
107 const Fields = ...;
108
109
110public:
111
114
115};
116
118class ElasticSearchIndexSearchResponseDataType : public DataProvider::HashDataType {
119
120public:
123
124};
125};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch index search API data provider.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:32
*string getDesc()
Returns the data provider description.
const ResponseType
Response type.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:47
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:40
const ProviderInfo
Provider info.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:36
const QueryArgs
Query args.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:50
const RequestType
Request type.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:44
ElasticSearch index search API request.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:102
const Fields
Field descriptions.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:107
ElasticSearch index search API response.
Definition ElasticSearchIndexSearchDataProvider.qc.dox.h:118
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26
const ElasticSearchAcknowledgedDataType
A constant for the acknowledged response type.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:44