Qore FtpClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
FtpClientCreateFileDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class FtpClientCreateFileDataProvider : 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
66protected:
67 auto doRequestImpl(auto req, *hash<auto> request_options);
68public:
69
70
72
74protected:
75 *AbstractDataProviderType getRequestTypeImpl();
76public:
77
78
80
82protected:
83 *AbstractDataProviderType getResponseTypeImpl();
84public:
85
86
88 hash<DataProviderInfo> getStaticInfoImpl();
89
90};
91};
The FTP client create file data provider class.
Definition FtpClientCreateFileDataProvider.qc.dox.h:28
const ProviderSummaryInfo
Provider summary info.
Definition FtpClientCreateFileDataProvider.qc.dox.h:39
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
const ResponseType
Response type.
Definition FtpClientCreateFileDataProvider.qc.dox.h:46
constructor(FtpClient ftp)
Creates the object from an FTP connection.
constructor(*hash< auto > options)
Creates the object from constructor options.
FtpClient ftp
FTP connection.
Definition FtpClientCreateFileDataProvider.qc.dox.h:32
const RequestType
Request type.
Definition FtpClientCreateFileDataProvider.qc.dox.h:43
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ProviderInfo
Provider info.
Definition FtpClientCreateFileDataProvider.qc.dox.h:35
string getName()
Returns the data provider name.
Data type for FTP client create file request calls.
Definition FtpClientCreateFileRequestDataType.qc.dox.h:27
Qore FtpClientDataProvider module definition.
Definition FtpClientCreateFileDataProvider.qc.dox.h:26
const FtpClientPathDataType
Constant for FTP client stat responses.
Definition FtpClientPathDataType.qc.dox.h:43