QBluetoothTransferReply ClassThe QBluetoothTransferReply class stores the response for a data transfer request. More... #include <QBluetoothTransferReply> Inherits: QObject. Public Types
Public Functions
Public Slots
Signals
Protected Functions
Additional Inherited MembersDetailed DescriptionThe QBluetoothTransferReply class stores the response for a data transfer request. In additional to a copy of the QBluetoothTransferRequest object used to create the request, QBluetoothTransferReply contains the contents of the reply itself. QBluetoothTransferReply is a sequential-access QIODevice, which means that once data is read from the object, it is no longer kept by the device. It is the application's responsibility to keep this data if it needs to. Whenever more data is received and processed, the readyRead() signal is emitted. The downloadProgress() signal is also emitted when data is received, but the number of bytes contained in it may not represent the actual bytes received, if any transformation is done to the contents (for example, decompressing and removing the protocol overhead). Even though QBluetoothTransferReply is a QIODevice connected to the contents of the reply, it emits the uploadProgress() signal, which indicates the progress of the upload for operations that have such content. Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QBluetoothTransferReply::NoError | 0 | No error. |
QBluetoothTransferReply::UnknownError | 1 | Unknown error, no better enum available |
QBluetoothTransferReply::FileNotFoundError | 2 | Unable to open the file specified |
QBluetoothTransferReply::HostNotFoundError | 3 | Unable to connect to the target host |
QBluetoothTransferReply::UserCanceledTransferError | 4 | User terminated the transfer |
Constructs a new QBluetoothTransferReply with parent.
Destroys the QBluetoothTransferReply object.
Aborts this reply.
Returns the attribute associated with code. If the attribute has not been set, it returns an invalid QVariant.
See also setAttribute().
This signal is emitted whenever data is received. The bytesReceived parameter contains the total number of bytes received so far out of bytesTotal expected for the entire transfer.
The error code of the error that occurred.
String describing the error. Can be displayed to the user.
This signal is emitted when the transfer is complete for reply.
Returns true if this reply has finished, otherwise false.
Returns true if this reply is running, otherwise false.
Returns the QBluetoothTransferManager that was used to create this QBluetoothTransferReply object.
See also setManager().
Returns the type of operation that this reply is for.
See also setOperation().
Set the attribute associated with the code to value.
See also attribute().
Set the reply's manager to the manager.
See also manager().
Sets the operation of this QBluetoothTransferReply to operation.
See also operation().
This signal is emitted whenever data is sent. The bytesSent parameter contains the total number of bytes sent so far out of bytesTotal.