update : 2015.11.03
php.shukuma.com검색:
|
The EvSignal class(PECL ev >= 0.2.0) 소개EvSignal watchers will trigger an event when the process receives a specific signal one or more times. Even though signals are very asynchronous, libev will try its best to deliver signals synchronously, i.e. as part of the normal event processing, like any other event.
There is no limit for the number of watchers for the same signal, but only
within the same loop, i.e. one can watch for
If possible and supported, libev will install its handlers with SA_RESTART (or equivalent) behaviour enabled, so system calls should not be unduly interrupted. In case of a problem with system calls getting interrupted by signals, all the signals can be blocked in an EvCheck watcher and unblocked in a EvPrepare watcher. 클래스 개요
EvSignal
extends
EvWatcher
{
/* 프로퍼티 */
public
$signum
;
/* 상속된 프로퍼티 */
public
$is_active
;
public
$data
;
public
$is_pending
;
public
$priority
;
/* 메소드 */
public
__construct
(
int
$signum
,
callable
$callback
[,
mixed
$data
= NULL
[,
int
$priority
= 0
]] )
final
public
static
EvSignal
createStopped
(
int
$signum
,
callable
$callback
[,
mixed
$data
= NULL
[,
int
$priority
= 0
]] )/* 상속된 메소드 */
}프로퍼티
Table of Contents
|