Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchDocumentReadDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
31
32public:
34 const ProviderInfo = ...;
35
36
39
40
43
46
48 const QueryArgs = ...;
49
50
52 constructor(*hash<auto> options);
53
54
56 constructor(RestClient::RestClient rest) ;
57
58
60 string getName();
61
62
64 *string getDesc();
65
66
68
73protected:
74 auto doRequestImpl(auto req, *hash<auto> request_options);
75public:
76
77
79
81protected:
82 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
83public:
84
85
87
89protected:
90 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
91public:
92
93
95 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
96
97};
98
100class ElasticSearchDocumentReadRequestDataType : public DataProvider::HashDataType {
101
102public:
103protected:
105 const Fields = ...;
106
107
108public:
109
112
113};
114
116class ElasticSearchDocumentReadResponseDataType : public DataProvider::HashDataType {
117
118public:
119protected:
121 const Fields = ...;
122
123
124public:
125
128
129};
130};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch document read API data provider.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:30
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:38
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ResponseType
Response type.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:45
const ProviderInfo
Provider info.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:34
const RequestType
Request type.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:42
const QueryArgs
Query args.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:48
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
*string getDesc()
Returns the data provider description.
Document read API request data type.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:100
const Fields
Field descriptions.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:105
Document read API response.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:116
const Fields
Field descriptions.
Definition ElasticSearchDocumentReadDataProvider.qc.dox.h:121
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26