KIO
KIO::StoredTransferJob Class Reference
StoredTransferJob is a TransferJob (for downloading or uploading data) that also stores a QByteArray with the data, making it simpler to use than the standard TransferJob. More...
#include <jobclasses.h>

Public Member Functions | |
QByteArray | data () const |
void | setData (const QByteArray &arr) |
~StoredTransferJob () | |
Protected Member Functions | |
StoredTransferJob (StoredTransferJobPrivate &dd) |
Detailed Description
StoredTransferJob is a TransferJob (for downloading or uploading data) that also stores a QByteArray with the data, making it simpler to use than the standard TransferJob.For KIO::storedGet it puts the data into the member QByteArray, so the user of this class can get hold of the whole data at once by calling data() when the result signal is emitted. You should only use StoredTransferJob to download data if you cannot process the data by chunks while it's being downloaded, since storing everything in a QByteArray can potentially require a lot of memory.
For KIO::storedPut the user of this class simply provides the bytearray from the start, and the job takes care of uploading it. You should only use StoredTransferJob to upload data if you cannot provide the in chunks while it's being uploaded, since storing everything in a QByteArray can potentially require a lot of memory.
Definition at line 680 of file jobclasses.h.
Constructor & Destructor Documentation
StoredTransferJob::StoredTransferJob | ( | StoredTransferJobPrivate & | dd | ) | [protected] |
Member Function Documentation
QByteArray StoredTransferJob::data | ( | ) | const |
void StoredTransferJob::setData | ( | const QByteArray & | arr | ) |
Set data to be uploaded.
This is for put jobs. Automatically called by KIO::storedPut(const QByteArray &, ...), do not call this yourself.
The documentation for this class was generated from the following files: