Daemon Thread

In Java, any thread can be a Daemon thread. Daemon threads are like a service providers for other threads or objects running in the same process as the daemon thread. Daemon threads are used for background supporting tasks and are only needed while normal threads are executing.

In java we have two types of Threads: Daemon Thread and User Threads. Generally all threads created by programmer are user thread (unless you specify it to be daemon or your parent thread is a daemon thread). It provides services to the user thread. Its life depends on the user threads i.e. when all the user threads dies, JVM terminates this thread automatically.

Points to remember for Daemon Thread:
It provides services to user threads for background supporting tasks. It has no role in life than to serve user threads.

  • Its life depends on user threads.
  • It is a low priority thread.
  • User thread is generally meant to run our program code. JVM doesn’t terminate unless all the user thread terminate.

On the other hand we have Daemon threads. Typically these threads are service provider threads. They should not be used to run your program code but some system code. These threads run parallel to your code but survive on the mercy of the JVM. When JVM finds no user threads it stops and all daemon thread terminate instantly. Thus one should never rely on daemon code to perform any program code.

For better understanding consider a well known example of Daemon thread: Java Garbage collector. Garbage collector runs as a daemon thread to reclaim any unused memory. When all user threads terminates, JVM may stop and garbage collector also terminates instantly.

Why JVM terminates the daemon thread if there is no user thread remaining?
The sole purpose of the daemon thread is that it provides services to user thread for background supporting task. If there is no user thread, why should JVM keep running this thread. That is why JVM terminates the daemon thread if there is no user thread.

Methods for Daemon thread:
The java.lang.Thread class provides two methods related to daemon thread

  1. public void setDaemon(boolean status): is used to mark the current thread as daemon thread or user thread.
  2. public boolean isDaemon(): is used to check that current is daemon.

Example of Daemon thread:

class DeamonThread extends Thread{
   public void run(){
      System.out.println("Name: "+Thread.currentThread().getName());
      System.out.println("Daemon: "+Thread.currentThread().isDaemon());
   }

  public static void main(String[] args){
     DeamonThread t1 = new DeamonThread();
     DeamonThread t2 = new DeamonThread();
     t1.setName("Dinesh on Java");     
     t1.setDaemon(true);
  
     t1.start();
     t2.start();
 }
}

output:

Daemon Thread

Note: If you want to make a user thread as Daemon, it must not be started otherwise it will throw IllegalThreadStateException.

class DeamonThread extends Thread{
   public void run(){
      System.out.println("Name: "+Thread.currentThread().getName());
      System.out.println("Daemon: "+Thread.currentThread().isDaemon());
   }

  public static void main(String[] args){
     DeamonThread t1 = new DeamonThread();
     DeamonThread t2 = new DeamonThread();
     t1.setName("Dinesh on Java");
     t1.start();     
     t1.setDaemon(true);
  
     t2.start();
 }
}

Output:

Daemon

What is difference between User and Daemon Thread in Java?
Java makes a distinction between a user thread and another type of thread known as a daemon thread. The daemon threads are typically used to perform services for user threads. The main() method of the application thread is a user thread. Threads created by a user thread are user thread. JVM doesn’t terminates unless all the user thread terminate.

You can explicitly specify a thread created by a user thread to be a daemon thread by calling setDaemon(true) on a Thread object. For example, the clock handler thread, the idle thread, the garbage collector thread, the screen updater thread, and the garbage collector thread are all daemon threads. A new created thread inherits the “daemon-status” of the thread that created it unless you explicitly calling setDaemon on that Thread object to change its status.

Note that the setDaemon() method must be called before the thread’s start() method is invoked.Once a thread has started executing (i.e., its start() method has been called) its daemon status cannot be changed. To determine if a thread is a daemon thread, use the accessor method isDaemon().

The difference between these two types of threads is straightforward: If the Java runtime determines that the only threads running in an application are daemon threads (i.e., there are no user threads in existence) the Java runtime promptly closes down the application, effectively stopping all daemon threads dead in their tracks. In order for an application to continue running, it must always have at least one live user thread. In all other respects the Java runtime treats daemon threads and user threads in exactly the same manner.

<<Previous <<   || Index ||   >>Next >>

Previous
Next