Quote Originally Posted by Cooker
Will the timer trigger that function in time, even if that function is still running? I just want to trigger that function again after that function finished.
Thats why you will have to be carefull when using timers. The timer will always call your function irrespective if its running or not, but its your responsibility as a programmer to see that, before the timer can fire again, the earlier instance has been completed. Otherwise your function has techinically not finished executing and hance you will not be able to see the desired output.