首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

EvTimer::createStopped

(PECL ev >= 0.2.0)

EvTimer::createStopped — Creates EvTimer stopped watcher object

Description

代码语言:javascript
复制
final public static EvTimer EvTimer::createStopped (  double $after  ,  double $repeat  ,  callable $callback  [,  mixed $data  = NULL  [,  int $priority  = 0  ]] )

Creates EvTimer stopped watcher object. Unlike EvTimer::__construct() , this method doesn't start the watcher automatically.

Parameters

after

Configures the timer to trigger after after seconds.

repeat

If repeat is 0.0 , then it will automatically be stopped once the timeout is reached. If it is positive, then the timer will automatically be configured to trigger again every repeat seconds later, until stopped manually.

callback

data

Custom data associated with the watcher.

priority

Watcher priority

Return Values

Returns EvTimer watcher object on success.

Examples

Example #1 Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay

代码语言:javascript
复制
<?php
$timer?=?EvTimer::createStopped(0.,?1.02,?function?($w)?{
????$w->stop();

????$stat?=?$w->data;

????//?1?second?after?the?most?recent?change?of?the?file
????printf("Current?size:?%ld\n",?$stat->attr()['size']);
});

$stat?=?new?EvStat("/var/log/messages",?0.,?function?()?use?($timer)?{
????//?Reset?timer?watcher
????$timer->again();
});

$timer->data?=?$stat;

Ev::run();
?>

See Also

  • EvTimer::__construct() - Constructs an EvTimer watcher object
  • EvPeriodic

← EvTimer::__construct

EvTimer::set →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com