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
|
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
| |||||||||||||||
feedback
|
|
I think this could be helpful: http://www.javaspecialists.eu/archive/Issue075.html and http://www.javaworld.com/javaworld/javatips/jw-javatip87.html. | ||||
|
feedback
|
|
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). | |||
|
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. | |||
|
feedback
|