Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 16241 программист и 1779 роботов. Сейчас ищут 1815 программистов ...
EvTimer::again - Restarts the timer watcher
Вернуться к: EvTimer
EvTimer::again
(PECL ev >= 0.2.0)
EvTimer::again — Restarts the timer watcher
Описание
public
void
EvTimer::again
( void
)
This will act as if the timer timed out and restart it again if it is repeating. The exact semantics are:
-
if the timer is pending, its pending status is cleared.
-
if the timer is started but non-repeating, stop it (as if it timed out).
-
if the timer is repeating, either start it if necessary (with the repeat value), or reset the running timer to the repeat value.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Смотрите также
- EvWatcher::stop() - Stops the watcher
Вернуться к: EvTimer