EvTimer::__constructConstructs an EvTimer watcher object Description
public
EvTimer::__construct(
float $after
,float $repeat
,callable $callback
,mixed $data
= null
,int $priority
= 0
) Constructs an EvTimer watcher object. Parameters
ExamplesExample #1 Simple timers
The above example will output something similar to: 2 seconds elapsed is called every second, is launched after 2 seconds iteration = 1 is called every second, is launched after 2 seconds iteration = 2 is called every second, is launched after 2 seconds iteration = 3 is called every second, is launched after 2 seconds iteration = 4 is called every second, is launched after 2 seconds iteration = 5 Run single iteration Callback of a timer created as stopped Restart the second watcher and try to handle the same events, but don't block Running a blocking loop is called every second, is launched after 2 seconds iteration = 8 is called every second, is launched after 2 seconds iteration = 9 is called every second, is launched after 2 seconds iteration = 10 END See Also
|