Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchIndexesDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
40 constructor(*hash<auto> options);
41
42
44 constructor(RestClient::RestClient rest) ;
45
46
48 string getName();
49
50
52 *string getDesc();
53
54
56 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
57
58
60
62protected:
64public:
65
66
68
72protected:
73 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
74public:
75
76
78 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
79
80
82
84protected:
85 *hash<auto> getAllIndices();
86public:
87
88
90
92protected:
93 *hash<auto> getIndex(string name);
94public:
95
96};
97};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch indexes root for providing record-based data providers for each index.
Definition ElasticSearchIndexesDataProvider.qc.dox.h:28
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
*hash< auto > getIndex(string name)
Returns a hash of the given index or nothing.
const ProviderInfo
Provider info.
Definition ElasticSearchIndexesDataProvider.qc.dox.h:32
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*hash< auto > getAllIndices()
Returns a hash of indices.
string getName()
Returns the data provider name.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*string getDesc()
Returns the data provider description.
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchIndexesDataProvider.qc.dox.h:36
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26