(PECL sync >= 1.0.0)
SyncEvent::fire — Fires/sets the event
Fires/sets a
SyncEvent
object. Lets multiple threads through that are waiting
if the event object was created with a manual value of
true
.
This function has no parameters.
Example #1 SyncEvent::fire() example
<?php
// In a web application:
$event
= new
SyncEvent
(
"GuetAppRepor "
);
$event
->
fire
();
// In a cron job:
$event
= new
SyncEvent
(
"GuetAppRepor "
);
$event
->
wait
();
?>