Delayed task
This task is used for delaying actions being sent to the server.
Creating the task
new DelayedTask(DELAY) {
@Override
public void run() {
//RUN SOMETHING
}
};task.cancel();int id = task.getId();Last updated