On quarta-feira, 18 de janeiro de 2017 20:04:41 PST Elvis Stansvik wrote: > If you have one QThread that depends on the completion of another, > then no, I don't think there's a convenient API in Qt to express that > relationship and run the threads in sequence. You'll have to string > them together yourself, or maybe use something else like Threadweaver. > I could be wrong of course
You can always chain-connect one thread's finished() signal to the other's start() slot. But that's unnecessary overhead: stopping and starting threads. You should do like Elvis says and just reuse the thread. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center _______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest