update : 2015.11.03
php.shukuma.com

검색:
 
 
Resets a manual event

SyncEvent::reset

(PECL sync >= 1.0.0)

SyncEvent::resetResets a manual event

설명

public bool SyncEvent::reset ( void )

Resets a SyncEvent object that has been fired/set. Only valid for manual event objects.

인수

이 함수는 인수가 없습니다.

반환값

A boolean value of TRUE if the object was successfully reset, FALSE otherwise.

예제

Example #1 SyncEvent::reset() example

<?php
// In a web application:
$event = new SyncEvent("DemoApplication"true);
$event->wait();

// In a cron job:
$event = new SyncEvent("DemoApplication"true);
$event->reset();
/* ... Do some maintenance task(s) ... */
$event->fire();
?>

참고