Qt moveToThread() vs calling new thread when do we use each
问题 When do we use each of this function calls in a threaded application. given two functions fun1() and fun2() defined in the same class dealing with read/write of data into buffers(queue operation). to achieve multi-threading to these. we would have to run the two functions in a separate thread. now lets say the first function read is called at the start of its thread. is it better to use moveTothread ( second thread)for function write at the start of the first functions thread Or define the