Interrupting a thread means stopping what it is doing before it has completed its task, effectively aborting its current operation. Whether the thread dies, waits for new tasks, or goes on to the next step depends on the application.

If any thread is in sleeping or waiting state (i.e. sleep() or wait() is invoked), calling the interrupt() method on the thread, breaks out the sleeping or waiting state throwing InterruptedException. If the thread is not in the sleeping or waiting state, calling the interrupt() method performs normal behavior and doesn’t interrupt the thread but sets the interrupt flag to true. Let’s first see the methods provided by the Thread class for thread interruption.

The 3 methods provided by the Thread class for interrupting a thread

  • public void interrupt()
  • public static boolean interrupted()
  • public boolean isInterrupted()

Example of interrupting a thread that stops working

class InterruptDemo extends Thread{
   public void run(){
     try{
        Thread.sleep(1000);
        System.out.println("task");
     }catch(InterruptedException e){
         throw new RuntimeException("Thread interrupted..."+e);
     }

}

public static void main(String args[]){
   InterruptDemo t1 = new InterruptDemo();
   t1.start();
   try{
       t1.interrupt();
   }catch(Exception e){
     System.out.println("Exception handled "+e);
    }

  }
}


output:

Example of interrupting a thread that doesn’t stop working

class InterruptDemo extends Thread{
   public void run(){
     try{
        Thread.sleep(1000);
        System.out.println("task");
     }catch(InterruptedException e){
         System.out.println("Exception handled "+e);
     }

}

public static void main(String args[]){
   InterruptDemo t1 = new InterruptDemo();
   t1.start();
   try{
       t1.interrupt();
   }catch(Exception e){
     System.out.println("Exception handled "+e);
    }
     System.out.println("thread is running...");
  }
}

output:

Example of interrupting thread that behaves normally
If thread is not in sleeping or waiting state, calling the interrupt() method sets the interrupted flag to true that can be used to stop the thread by the java programmer later.

class InterruptThread extends Thread{

   public void run(){
      for(int i=1;i<=5;i++)
         System.out.println(i);
      }

   public static void main(String args[]){
      InterruptThread t1 = new InterruptThread();
      t1.start();

      t1.interrupt();

    }
}

output:

What about isInterrupted and interrupted method?
The isInterrupted() method returns the interrupted flag either true or false. The static interrupted() method returns the interrupted flag after that it sets the flag to false if it is true.

class InterruptedDemo extends Thread{

   public void run(){
      for(int i=1;i<=2;i++){
         if(Thread.interrupted()){
             System.out.println("code for interrupted thread");
          }
          else{
             System.out.println("code for normal thread");
          }

       }//end of for loop
    }

    public static void main(String args[]){

       InterruptedDemo t1=new InterruptedDemo();
       InterruptedDemo t2=new InterruptedDemo();

       t1.start();
       t1.interrupt();

       t2.start();

    }
}

output:

<<Previous <<   || Index ||   >>Next >>
Previous
Next
Dinesh Rajput

Dinesh Rajput is the chief editor of a website Dineshonjava, a technical blog dedicated to the Spring and Java technologies. It has a series of articles related to Java technologies. Dinesh has been a Spring enthusiast since 2008 and is a Pivotal Certified Spring Professional, an author of a book Spring 5 Design Pattern, and a blogger. He has more than 10 years of experience with different aspects of Spring and Java design and development. His core expertise lies in the latest version of Spring Framework, Spring Boot, Spring Security, creating REST APIs, Microservice Architecture, Reactive Pattern, Spring AOP, Design Patterns, Struts, Hibernate, Web Services, Spring Batch, Cassandra, MongoDB, and Web Application Design and Architecture. He is currently working as a technology manager at a leading product and web development company. He worked as a developer and tech lead at the Bennett, Coleman & Co. Ltd and was the first developer in his previous company, Paytm. Dinesh is passionate about the latest Java technologies and loves to write technical blogs related to it. He is a very active member of the Java and Spring community on different forums. When it comes to the Spring Framework and Java, Dinesh tops the list!

Share
Published by
Dinesh Rajput

Recent Posts

Strategy Design Patterns using Lambda

Strategy Design Patterns We can easily create a strategy design pattern using lambda. To implement…

2 years ago

Decorator Pattern using Lambda

Decorator Pattern A decorator pattern allows a user to add new functionality to an existing…

2 years ago

Delegating pattern using lambda

Delegating pattern In software engineering, the delegation pattern is an object-oriented design pattern that allows…

2 years ago

Spring Vs Django- Know The Difference Between The Two

Technology has emerged a lot in the last decade, and now we have artificial intelligence;…

2 years ago

TOP 20 MongoDB INTERVIEW QUESTIONS 2022

Managing a database is becoming increasingly complex now due to the vast amount of data…

2 years ago

Scheduler @Scheduled Annotation Spring Boot

Overview In this article, we will explore Spring Scheduler how we could use it by…

2 years ago