Qore RestClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
RestClientHeadDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace RestClientDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
41
44
46 constructor(*hash<auto> options);
47
48
50 constructor(RestClient rest) ;
51
52
54 string getName();
55
56
58
63protected:
64 auto doRequestImpl(auto req, *hash<auto> request_options);
65public:
66
67
70
72protected:
73 *AbstractDataProviderType getRequestTypeImpl();
74public:
75
76
78
80protected:
81 *AbstractDataProviderType getResponseTypeImpl();
82public:
83
84
86 hash<DataProviderInfo> getStaticInfoImpl();
87
88};
89};
The REST client data provider class, provides API classes as children.
Definition RestClientDataProviderBase.qc.dox.h:28
RestClient::RestClient rest
The REST client object.
Definition RestClientDataProviderBase.qc.dox.h:33
The REST client HEAD data provider class.
Definition RestClientHeadDataProvider.qc.dox.h:28
const ResponseType
Response type.
Definition RestClientHeadDataProvider.qc.dox.h:43
const ProviderInfo
Provider info.
Definition RestClientHeadDataProvider.qc.dox.h:32
const RequestType
Request type.
Definition RestClientHeadDataProvider.qc.dox.h:40
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ProviderSummaryInfo
Provider summary info.
Definition RestClientHeadDataProvider.qc.dox.h:36
constructor(RestClient rest)
Creates the object from a REST connection.
constructor(*hash< auto > options)
Creates the object from constructor options.
Qore RestClientDataProvider module definition.
Definition RestClientCallDataProvider.qc.dox.h:26
const RestClientCallResponseDataType
Constant type for REST call responses.
Definition RestClientCallResponseDataType.qc.dox.h:27
const RestClientCallWithoutBodyRequestDataType
Constant type for REST call requests without a body.
Definition RestClientCallWithoutBodyRequestDataType.qc.dox.h:27