Qore Pop3ClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
Pop3ClientMessageGetDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace Pop3ClientDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
35protected:
37 string id;
38
39public:
40
42 constructor(Pop3Client pop3, string id) ;
43
44
46 string getName();
47
48
50 *string getDesc();
51
52
54
59protected:
60 auto doRequestImpl(auto req, *hash<auto> request_options);
61public:
62
63
65
67protected:
68 *AbstractDataProviderType getRequestTypeImpl();
69public:
70
71
73
75protected:
76 *AbstractDataProviderType getResponseTypeImpl();
77public:
78
79
81protected:
82 hash<DataProviderInfo> getStaticInfoImpl();
83public:
84
85};
86};
The POP3 client data provider class, provides API classes as children.
Definition Pop3ClientDataProviderBase.qc.dox.h:28
The POP3 message parent data provider.
Definition Pop3ClientMessageGetDataProvider.qc.dox.h:28
string id
Message ID.
Definition Pop3ClientMessageGetDataProvider.qc.dox.h:37
const ProviderInfo
Provider info.
Definition Pop3ClientMessageGetDataProvider.qc.dox.h:32
constructor(Pop3Client pop3, string id)
Creates the object from an POP3 connection.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
*string getDesc()
Returns the data provider description.
Qore Pop3ClientDataProvider class definition.
Definition Pop3ClientDataProvider.qc.dox.h:26