eric6.Helpviewer.Network.NetworkReply
Module implementing a network reply object for special data.
Global Attributes
Classes
| NetworkReply | Class implementing a QNetworkReply subclass for special data. | 
Functions
NetworkReply
    Class implementing a QNetworkReply subclass for special data.
Derived from
QNetworkReply
Class Attributes
Class Methods
Methods
| NetworkReply | Constructor | 
| abort | Public slot to abort the operation. | 
| bytesAvailable | Public method to determined the bytes available for being read. | 
| isFinished | Public method to check, if the reply has finished. | 
| readData | Public method to retrieve data from the reply object. | 
Static Methods
NetworkReply (Constructor)
NetworkReply(request, fileData, mimeType, parent=None)
        Constructor
- request
- 
reference to the request object (QNetworkRequest)
- fileData
- 
reference to the data buffer (QByteArray)
- mimeType
- 
for the reply (string)
- parent
- 
reference to the parent object (QObject)
NetworkReply.abort
abort()
        Public slot to abort the operation.
NetworkReply.bytesAvailable
bytesAvailable()
        Public method to determined the bytes available for being read.
- Returns:
- 
bytes available (integer)
NetworkReply.isFinished
isFinished()
        Public method to check, if the reply has finished.
- Returns:
- 
flag indicating the finished state (boolean)
NetworkReply.readData
readData(maxlen)
        Public method to retrieve data from the reply object.
- maxlen
- 
maximum number of bytes to read (integer)
- Returns:
- 
string containing the data (bytes)