For example, basically thread'e doing
connect(this,SIGNAL(runIt(int)),obj,SLOT(run(int)));//посл. арг. ауто _future = QtConcurrent::run(this,&Server::serverThreadAlt);//асинхронно Now serverThreadAlt is called in a separate one. And there already calling
void Server::serverThreadAlt() { emit runIt(0); } Will the slot be called and in which thread? Basically or in the same, in which serverThreadAlt?