pahenrus / react-signals
Unix signals handling for ReactPHP
v1.0.1
2015-12-27 19:18 UTC
Requires
- ext-pcntl: *
- evenement/evenement: ^2.0
- react/event-loop: ^0.4
This package is not auto-updated.
Last update: 2025-01-18 20:08:35 UTC
README
Unix signals handler for React PHP.
##Install
The best way to install this library is through composer:
$ composer require pahenrus/react-signals
Usage
This library provides the PCNTL class which taskes an event loop and optionally the timer interval in which the PCNTL signals should be read as constructor arguments. After initializing the class, you can use the on() method to register event listeners to PCNTL signals.
$loop = React\EventLoop\Factory::create(); $signalsHandler = new Reac\Signals\Handler($loop); $signalsHandler->on(SIGTERM, function () { // Clear some queue // Write syslog // Do ALL the stuff echo 'Bye'.PHP_EOL; die(); }); $signalsHandler->on(SIGINT, function () { echo 'Terminated by console'.PHP_EOL; die(); }); echo 'Started as PID '.getmypid().PHP_EOL; $loop->run();