array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'syncevent.wait.php', 1 => 'SyncEvent::wait', 2 => 'Waits for the event to be fired/set', ), 'up' => array ( 0 => 'class.syncevent.php', 1 => 'SyncEvent', ), 'prev' => array ( 0 => 'syncevent.reset.php', 1 => 'SyncEvent::reset', ), 'next' => array ( 0 => 'class.syncreaderwriter.php', 1 => 'SyncReaderWriter', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sync/syncevent/wait.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

SyncEvent::wait

(PECL sync >= 1.0.0)

SyncEvent::waitWaits for the event to be fired/set

说明

public SyncEvent::wait(int $wait = -1): bool

Waits for the SyncEvent object to be fired.

参数

wait

The number of milliseconds to wait for the event to be fired. A value of -1 is infinite.

返回值

成功时返回 true, 或者在失败时返回 false

示例

示例 #1 SyncEvent::wait() example

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

// In a cron job:
$event = new SyncEvent("GetAppReport");
$event->wait();
?>

参见