I want to detect when some time consumption operations in main thread cause gui freeze. My target is to set and unset wait cursor automatically.

thanks

link|improve this question

5  
It doesn't make much sense. If the gui is frozen, you won't be able to set a wait cursor: the GUI is frozen. – JB Nizet Dec 17 '11 at 13:24
1  
@blow there is possible to extract all events wainting in Event Dispash Thread, check for violations, for Reapaint Manager, but why???, you have to calculating (if we talking about AWT, Swing and theirs derivates) that all events in EDT will be done (output to the screen) in one moment, – mKorbel Dec 17 '11 at 13:29
@blow: added 'swing' tag. please correct if I'm wrong – home Dec 17 '11 at 13:36
1  
I confess my sin: apparently, setting the cursor changes it immediately, even in the middle of a time-consuming action in the EDT. The question thus makes sense. – JB Nizet Dec 17 '11 at 14:00
feedback

3 Answers

I think you're putting the cart before the horse: Your main thread shouldn't do any time-consuming operations in the first place - they should always be externalized in separate threads, so that your GUI can stay responsive (and e.g. show status on the operations, or provide the possibility to abort them).

link|improve this answer
feedback

You can have a thread which polls the GUI thread's stack trace to determine whether it is idle or busy. If busy too often, you can log what it is doing (the stack trace) to a log. Initially it might be interesting to record every non-idle stack trace and work out which ones are not worth logging.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.