update : 2015.11.03
php.shukuma.com검색:
|
The EvTimer class(PECL ev >= 0.2.0) 소개EvTimer watchers are simple relative timers that generate an event after a given time, and optionally repeating in regular intervals after that. The timers are based on real time, that is, if one registers an event that times out after an hour and resets the system clock to January last year , it will still time out after(roughly) one hour. "Roughly" because detecting time jumps is hard, and some inaccuracies are unavoidable. The callback is guaranteed to be invoked only after its timeout has passed (not at, so on systems with very low-resolution clocks this might introduce a small delay). If multiple timers become ready during the same loop iteration then the ones with earlier time-out values are invoked before ones of the same priority with later time-out values (but this is no longer true when a callback calls EvLoop::run() recursively).
The timer itself will do a best-effort at avoiding drift, that is, if a
timer is configured to trigger every
클래스 개요
EvTimer
extends
EvWatcher
{
/* 프로퍼티 */
public
$repeat
;
public
$remaining
;
/* 상속된 프로퍼티 */
public
$is_active
;
public
$data
;
public
$is_pending
;
public
$priority
;
/* 메소드 */
public
__construct
(
double
$after
,
double
$repeat
,
callable
$callback
[,
mixed
$data
= NULL
[,
int
$priority
= 0
]] )
final
public
static
EvTimer
createStopped
(
double
$after
,
double
$repeat
,
callable
$callback
[,
mixed
$data
= NULL
[,
int
$priority
= 0
]] )/* 상속된 메소드 */
}프로퍼티
Table of Contents
|