PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

EvTimer::createStopped - Creates EvTimer stopped watcher object | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

EvTimer::createStopped

(PECL ev >= 0.2.0)

EvTimer::createStoppedCreates EvTimer stopped watcher object

説明

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.

パラメータ

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

See Watcher callbacks .

data

Custom data associated with the watcher.

priority

Watcher priority

返り値

Returns EvTimer watcher object on success.

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

<?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();
?>

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「EvTimer::createStopped - Creates EvTimer stopped watcher object」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | EvTimer::createStopped - Creates EvTimer stopped watcher object」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: