Skip to content

Instantly share code, notes, and snippets.

@nkonev
Created November 10, 2019 16:48
InterruptingThread.java
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