Qore FtpClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
FtpClientListDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace FtpClientDataProvider {
28class FtpClientListDataProvider : public AbstractDataProvider {
29
30public:
32 FtpClient ftp;
33
35 const ProviderInfo = ...;
36
37
40
41
44
47
49 constructor(*hash<auto> options);
50
51
53 constructor(FtpClient ftp);
54
55
57 string getName();
58
59
61
68protected:
69 auto doRequestImpl(auto req, *hash<auto> request_options);
70public:
71
72
74
76protected:
77 *AbstractDataProviderType getRequestTypeImpl();
78public:
79
80
82
84protected:
85 *AbstractDataProviderType getResponseTypeImpl();
86public:
87
88
90 hash<DataProviderInfo> getStaticInfoImpl();
91
92};
93};
The FTP client list data provider class.
Definition FtpClientListDataProvider.qc.dox.h:28
constructor(*hash< auto > options)
Creates the object from constructor options.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
const ProviderSummaryInfo
Provider summary info.
Definition FtpClientListDataProvider.qc.dox.h:39
const RequestType
Request type.
Definition FtpClientListDataProvider.qc.dox.h:43
string getName()
Returns the data provider name.
FtpClient ftp
FTP connection.
Definition FtpClientListDataProvider.qc.dox.h:32
const ResponseType
Response type.
Definition FtpClientListDataProvider.qc.dox.h:46
constructor(FtpClient ftp)
Creates the object from an FTP connection.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ProviderInfo
Provider info.
Definition FtpClientListDataProvider.qc.dox.h:35
const ResponseType
Response type.
Definition FtpClientStatDataProvider.qc.dox.h:46
Qore FtpClientDataProvider module definition.
Definition FtpClientCreateFileDataProvider.qc.dox.h:26
const FtpClientPathDataType
Constant for FTP client stat responses.
Definition FtpClientPathDataType.qc.dox.h:43