I am not calling exec() yet my timer and QUdpSocket work just fine. Is exec used to wait for an event to continue?
UPDATE: the timer was working because I had not called moveToThread(this) on the QThread which meant the QThread was actually still part of the main thread. As for QUdpSocket well I was using the polling functions so it did not need to work with signals.
TIP: if you need to do init stuff that requires an event loop in your QThread you can delay calling moveToThread until you dont need signals anymore, that is practical when the program is loading. You also dont need to call it in the constructor (you could call it inside run() for example), just copy the this QThread this pointer to a variable and make the call later/elsewhere using the pointer