python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
QThreadPool doesn't release memory after QRunnable has ended
I'm trying to implement image thumbnail loading. I use QThreadPool to make it multicore, but when an image loads, it doesn't free memory.
This problem occurs even if I don't use QImage object afterwar...
KotoWhiskas
Votes: 0
Answers: 0
How to run QTcpServer in separate thread from GUI in PySide6?
I'm making a PySide6 program with a GUI, backend, and a QTcpServer (which only handles a single connection), and I want all three in separate threads as to never freeze up the GUI.
I read about implem...
Marcus Hagberg
Votes: 0
Answers: 1
QObject singleton living on main thread, invoke it's signal from another thread, is it thread safe?
as the title says,
I have a Core singleton that inherits from QObject that is constructed on the main thread.
I also Have a QTcpServer that is creating a new QThread for each new connection, that is w...
sadeq
Votes: 0
Answers: 0
QTreading implementation for two different functions - PyQT5
I've been trying to implement multithreading on PyQT5 using QThreads. I want to display a video and update a set of labels at the same time(I used a counter as an example). From my research I found di...
Isra
Votes: 0
Answers: 1