this class can be used to send and receive data using the DataStream protocol
More...
#include <DataStreamClient.qm.dox.h>
|
| auto | sendData () |
| | this method returns data to be returned to the server; when this method returns no value, it signifies the end of the streamed data transfer; this method calls sendDataImpl() to return the data More...
|
| |
| nothing | recvData (auto data) |
| | receives decoded data from the remote end and calls recvDataImpl() More...
|
| |
| nothing | recvDataDone (*string err) |
| | this method is called when all data has been received; this method calls recvDataDoneImpl() More...
|
| |
| abstract auto | sendDataImpl () |
| | reimplement this method in subclasses to support streamed data transfers; when this method returns no value, it signifies the end of the streamed data transfer More...
|
| |
| nothing | recvDataDoneImpl (*string err) |
| | this method is called when all data has been received More...
|
| |
| abstract nothing | recvDataImpl (auto data) |
| | reimplement this method in subclasses to receive decoded and deserialized data More...
|
| |
this class can be used to send and receive data using the DataStream protocol