Repeating task
This task is used for repeating actions being sent to the server.
Creating the task
new RepeatingTask(INITIAL DELAY, REPEATING DELAY) {
@Override
public void run() {
//RUN SOMETHING
}
};task.cancel();int id = task.getId();Last updated