Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
The SyncEvent class
(PECL sync >= Unknown)
Введение
A cross-platform, native implementation of named and unnamed event objects. Both automatic and manual event objects are supported.
An event object waits, without polling, for the object to be fired/set. One instance waits on the event object while another instance fires/sets the event. Event objects are useful wherever a long-running process would otherwise poll a resource (e.g. checking to see if uploaded data needs to be processed).
Обзор классов
SyncEvent {
/* Методы */
public __construct ([ string $name [, bool $manual ]] )
public bool fire ( void )
public bool reset ( void )
public bool wait ([ integer $wait ] )
}
Содержание
- SyncEvent::__construct — Constructs a new SyncEvent object
- SyncEvent::fire — Fires/sets the event
- SyncEvent::reset — Resets a manual event
- SyncEvent::wait — Waits for the event to be fired/set
User Contributed Notes
There are no user contributed notes for this page.

Описание класса syncevent, примеры использования класса syncevent.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru