Hi! I'm in the need of writing a thread that continuously processes messages, one after the other (and maybe with a priority), coming from other threads.
I used something similar in an Android application using the Handler class (http://developer.android.com/referen...s/Handler.html). Is there anything similar in Qt or should I implement it myself using queues, Semaphores etc...?
What I found so far is the QAbstractMessageHandler, but it doesn't seem to be what I'm looking for.
Is there anything else that may be of help to implement such a thing?
Thanks for any advice!