Uses of Thread Viewer in coding with Java IDE

Asked By 50 points N/A Posted on -
qa-featured

Why do I need a thread viewer in my Java IDE while coding and debugging my programs that already have predefined process flow?

SHARE
Answered By 0 points N/A #128276

Uses of Thread Viewer in coding with Java IDE

qa-featured

 

Hello Christopher,

Although your programs already have a predefined process flow, it is still necessary to a have thread viewer in order to check if the threads are executing or blocking because of synchronization, I/O, or some other reasons. The thread viewer also determines why UI of an application is unresponsive during certain execution phases and it also understands the degree of concurrency in the application which greatly helps in parallelization. 

Related Questions