PDA

View Full Version : how to create message queue in qt



gauravg
17th November 2011, 12:47
hi all pleas tell me how to create message queue in Qt and communicate with each other.


thanks with regards:
gauravg

MarekR22
17th November 2011, 13:36
Qt is handling that you don't have to do anything.
Event queue is started by QApplication::exec you can enforce processing event queue by calling QCoreApplication::processEvents. In case of threads there is QThread::exec.
To communicate just use signal and slots.