Qore HttpClientDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
HttpClientHeadDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace HttpClientDataProvider {
28class HttpClientHeadDataProvider : public AbstractDataProvider {
29
30public:
32 HTTPClient http;
33
35 const ProviderInfo = ...;
36
37
40
41
44
47
49 constructor(*hash<auto> options);
50
51
53 constructor(HTTPClient http);
54
55
57 string getName();
58
59
61
66protected:
67 auto doRequestImpl(auto req, *hash<auto> request_options);
68public:
69
70
73
75protected:
76 *AbstractDataProviderType getRequestTypeImpl();
77public:
78
79
81
83protected:
84 *AbstractDataProviderType getResponseTypeImpl();
85public:
86
87
89 hash<DataProviderInfo> getStaticInfoImpl();
90
91};
92};
Data type for HTTP call responses.
Definition HttpClientCallResponseDataType.qc.dox.h:27
Data type for HTTP call requests with no message bodies.
Definition HttpClientCallWithoutBodyRequestDataType.qc.dox.h:27
The HTTP head data provider class.
Definition HttpClientHeadDataProvider.qc.dox.h:28
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
const ProviderSummaryInfo
Provider summary info.
Definition HttpClientHeadDataProvider.qc.dox.h:39
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
HTTPClient http
HTTP connection.
Definition HttpClientHeadDataProvider.qc.dox.h:32
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const ProviderInfo
Provider info.
Definition HttpClientHeadDataProvider.qc.dox.h:35
string getName()
Returns the data provider name.
const ResponseType
Response type.
Definition HttpClientHeadDataProvider.qc.dox.h:46
const RequestType
Request type.
Definition HttpClientHeadDataProvider.qc.dox.h:43
constructor(*hash< auto > options)
Creates the object from constructor options.
constructor(HTTPClient http)
Creates the object from an HTTP connection.
Qore HttpClientDataProvider module definition.
Definition HttpClientCallDataProvider.qc.dox.h:26