Qtimer object blocking an application.
Hello,
Im using a Qtimer object in order to create a repetitive event in a application. However this object is always running and blocks the application.
Could you help me?
Many thanks
Ricardo Sousa
Note: the Qtimer object is not in a different thread, but I suppose that it should work in this way.
Re: Qtimer object blocking an application.
Quote:
Could you help me?
Sure. The timer itself cannot block the application, only the processing it triggers. So, don't run the timer on a period shorter than the code it runs in the attached slot(s) connected to the timeout() signal.