This commit is contained in:
2021-12-06 17:58:11 +08:00
parent 94a522588d
commit c19e141f68
2 changed files with 43 additions and 5 deletions
+29 -1
View File
@@ -3,7 +3,7 @@
namespace Server\Abstracts;
use JetBrains\PhpStorm\Pure;
use Kiri\Context;
use Server\Contract\OnProcessInterface;
use Swoole\Coroutine;
use Swoole\Process;
@@ -80,4 +80,32 @@ abstract class BaseProcess implements OnProcessInterface
}
/**
*
*/
public function onSigterm(): static
{
if (!Context::inCoroutine()) {
Process::signal(SIGTERM, fn($data) => $this->onShutdown($data));
} else {
Coroutine::create(function () {
$data = Coroutine::waitSignal(SIGTERM, -1);
if ($data) {
$this->onShutdown($data);
}
});
}
return $this;
}
/**
* @param $data
*/
protected function onShutdown($data): void
{
$this->isStop = true;
}
}