Created
November 10, 2019 16:48
InterruptingThread.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Date; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.TimeUnit; | |
public class InterruptingThread { | |
public static void main(String[] args) throws InterruptedException { | |
java.util.concurrent.ScheduledExecutorService scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(); | |
scheduledExecutorService.scheduleWithFixedDelay(() -> { | |
while (!Thread.currentThread().isInterrupted()) { | |
System.out.println("" + new Date() + " ololo am a bad boy"); | |
try { | |
TimeUnit.SECONDS.sleep(1); | |
} catch (InterruptedException e) { | |
Thread.currentThread().interrupt(); | |
} | |
} | |
}, 0L, 1L, TimeUnit.SECONDS); | |
TimeUnit.SECONDS.sleep(3); | |
System.err.println("terminating"); | |
scheduledExecutorService.shutdownNow(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://praveer09.github.io/technology/2015/12/06/understanding-thread-interruption-in-java/