
t.example-sleep.0.5.0.source-code.Sleep Maven / Gradle / Ivy
public class Sleep implements Runnable {
public void run() {
try {
System.out.println("G'day World!");
synchronized(this) {
while (true) {
this.wait();
}
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy