CHANGE: REDEFINING THE STRUCTURE
FIX: ApiCall.java ADD: ISIS IC Server REQ ADD: RULES
This commit is contained in:
14
src/main/java/eu/hsrw/ias/ggd/MainExe.java
Normal file
14
src/main/java/eu/hsrw/ias/ggd/MainExe.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package eu.hsrw.ias.ggd;
|
||||
|
||||
import java.util.Timer;
|
||||
|
||||
public class MainExe {
|
||||
public static void main(String[] args){
|
||||
|
||||
Timer time = new Timer(); // Instantiate Timer Object
|
||||
ScheduledTask scheduledTask = new ScheduledTask(); // Instantiate SheduledTask class
|
||||
time.schedule(scheduledTask, 0, 1000 * 30 * 1 ); // Create Repetitively task for every 2 min
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user