Eneboo - Documentación para desarrolladores
|
The QAsyncIO class encapsulates I/O asynchronicity. Más...
#include <qasyncio.h>
Métodos públicos | |
virtual | ~QAsyncIO () |
void | connect (QObject *, const char *member) |
virtual | ~QAsyncIO () |
void | connect (QObject *, const char *member) |
Métodos protegidos | |
void | ready () |
void | ready () |
The QAsyncIO class encapsulates I/O asynchronicity.
The Qt classes for asynchronous input/output provide a simple mechanism to allow large files or slow data sources to be processed without using large amounts of memory or blocking the user interface.
This facility is used in Qt to drive animated images. See QImageConsumer.
QAsyncIO::~QAsyncIO | ( | ) | [virtual] |
Destroys the async IO object.
virtual QAsyncIO::~QAsyncIO | ( | ) | [virtual] |
void QAsyncIO::connect | ( | QObject * | obj, |
const char * | member | ||
) |
Ensures that only one object, obj and function, member, can respond to changes in readiness.
void QAsyncIO::connect | ( | QObject * | , |
const char * | member | ||
) |
void QAsyncIO::ready | ( | ) | [protected] |
void QAsyncIO::ready | ( | ) | [protected] |
Derived classes should call this when they change from being unready to ready.