News

In this blog we will learn about importance of Thread class in java and instantiating thread. Every java program consists at least one thread i.e. the main thread. The Java Virtual Machine always ...
Waiting: The thread is waiting indefinitely for another thread to perform a particular action. Timed Waiting: The thread is waiting for a specified amount of time. Terminated: The thread has finished ...
Both extend from the Java Thread class. The ThreadManager holds a container which holds the ManagedThreads. When a new ManagedThread is created it adds itself to this container.