Php/docs/class.syncevent

提供:Dev Guides
< Php
2020年12月14日 (月) 12:45時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

(PECL sync >= 1.0.0)

はじめに

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 = false [, bool $prefire = false ]]] )

public fire ( ) : bool

public reset ( ) : bool

public wait ([ int $wait = -1 ] ) : bool

}

目次