Hi, a little Question...

I have several Objects, and each of this objects live in its own thread. (moveToThread)

Further I have a pool, which has a QList<Object*>, which holds the objects. The Pool lives in the mainthread.

Is it right, that if I call a method of an object within my pool-class, the method is processed in the object's thread? And Is it right, that I have to lock the member method with QMutex?

thank u