how to delay a function in java code example
Example 1: java delay
Syntax :
=========================================================
Thread.sleep(1000); // 1000 milliseconds.. |
=========================================================
int i=0;
for(;;){
Thread.sleep(2000); // set time delay to 2 seconds..
System.out.println(i++); // output : every output will display after 2 seconds..
}
Example 2: delay a function call in java
new java.util.Timer().schedule(
new java.util.TimerTask() {
public void run() {
// your code here
}
},
5000
);