(PECL sync >= 1.0.0)
SyncEvent::__construct — Constructs a new SyncEvent object
Constructs a named or unnamed event object.
name注意: If the name already exists, it must be able to be opened by the current user that the process is running as or an exception will be thrown with a meaningless error message.
manual注意: Manual reset event objects allow all waiting processes through until the object is reset.
prefire注意: Only has impact if the calling process/thread is the first to create the object.
The new SyncEvent object.
An exception is thrown if the event object cannot be created or opened.
例1 SyncEvent::__construct() example
<?php
// In a web application:
$event = new SyncEvent("GetAppReport");
$event->fire();
// In a cron job:
$event = new SyncEvent("GetAppReport");
$event->wait();
?>| バージョン | 説明 |
|---|---|
| PECL sync 1.1.0 |
Added prefire.
|