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 ] )
}

Table of Contents

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top