Swoole\Process::alarm (int $interval_usec, int $type = ITIMER_REAL) : bool

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Process::alarm ( int $interval_usec, int $type = ITIMER_REAL) : bool

Parameters

interval_usec

interval

type

alarm type

Return

success

Description

High precision timer which will trigger signal every fixed interval.

Example

<?php
Swoole\Process::signal(SIGALRM, function () {
    static $i = 0;
    echo "#{$i}\talarm\n";
    $i++;
    if ($i > 20) {
        Swoole\Process::alarm(-1);
    }
});

//100ms
Swoole\Process::alarm(100 * 1000);
Last updated on August 31, 2022