java4all@1986 java. Powered by Blogger.

Levels of threads.?

>> Monday, May 30, 2011

Runnable — waiting for its turn to be picked for execution by the thread scheduler based on thread priorities.
 Running: The processor is actively executing the thread code. It runs until it becomes blocked, or voluntarily  gives up its turn with this static method Thread.yield(). Because of context switching overhead, yield() should
not be used very frequently.
 Waiting: A thread is in a blocked state while it waits for some external processing such as file I/O to finish.
 Sleeping: Java threads are forcibly put to sleep (suspended) with this overloaded method:
Thread.sleep(milliseconds), Thread.sleep(milliseconds, nanoseconds);
 Blocked on I/O: Will move to runnable after I/O condition like reading bytes of data etc changes.
 Blocked on synchronization: Will move to Runnable when a lock is acquired.
 Dead: The thread is finished working.

0 comments:

Post a Comment

FaceBook Login

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

Total Pageviews

STATCOUNTER

  © Blogger template Simple n' Sweet by Ourblogtemplates.com 2009

Back to TOP