SyncEvent::__construct
Constructs a new SyncEvent object
&reftitle.description;
public SyncEvent::__construct
stringname
boolmanual&false;
boolprefire&false;
Constructs a named or unnamed event object.
&reftitle.parameters;
name
The name of the event if this is a named event object.
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
Specifies whether or not the event object must be reset manually.
Manual reset event objects allow all waiting processes through until the
object is reset.
prefire
Specifies whether or not to prefire (signal) the event object.
Only has impact if the calling process/thread is the first to create the object.
&reftitle.returnvalues;
The new SyncEvent object.
&reftitle.errors;
An exception is thrown if the event object cannot be created or opened.
&reftitle.examples;
SyncEvent::__construct example
fire();
// In a cron job:
$event = new SyncEvent("GetAppReport");
$event->wait();
?>
]]>
&reftitle.changelog;
&Version;
&Description;
PECL sync 1.1.0
Added prefire.
&reftitle.seealso;
SyncEvent::fire
SyncEvent::reset
SyncEvent::wait