multiprocessing - child process constantly sending back results and keeps running
问题 Is it possible to have a few child processes running some calculations, then send the result to main process (e.g. update PyQt ui), but the processes are still running, after a while they send back data and update ui again? With multiprocessing.queue, it seems like the data can only be sent back after process is terminated. So I wonder whether this case is possible or not. 回答1: I don't know what you mean by "With multiprocessing.queue, it seems like the data can only be sent back after