I tried to see how a timer\'s fixed delay method (schedule) works but looks like i failed.
This is my code :
public class Timer_Test {
static Timer
Nope, that's how it is intended to work. The period is the period between start times, not the period between an end time and the next start time.
Basically you're telling it in plain english "start at 1 second and execute every two seconds after that" so 1, 3, 5, 7, etc is the logical interpretation.