mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
16 lines
359 B
PHP
Executable File
16 lines
359 B
PHP
Executable File
<?php
|
|
|
|
namespace Alert;
|
|
|
|
interface SignalReactor extends Reactor {
|
|
|
|
/**
|
|
* React to process control signals
|
|
*
|
|
* @param int $signal The signal to watch for (e.g. 2 for SIGINT)
|
|
* @param callable $onSignal
|
|
* @return int Returns a unique integer watcher ID
|
|
*/
|
|
public function onSignal($signal, callable $onSignal);
|
|
}
|