Timer(::Function,delay,repeat=0)
Timer(callback::Function, delay, repeat=0)
Create a timer to call the given callback
function. The callback
is passed one argument, the timer object itself. The callback will be invoked after the specified initial delay
, and then repeating with the given repeat
interval. If repeat
is 0
, the timer is only triggered once. Times are in seconds. A timer is stopped and has its resources freed by calling close
on it.
Examples
See Also
:@time, :@timed, :@timev, now, sleep, tic, time, timedwait, Timer, time_ns, toc, toq,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.