Changeset View
Changeset View
Standalone View
Standalone View
src/daemon/PhutilDaemonOverseer.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Oversees a daemon and restarts it if it fails. | * Oversees a daemon and restarts it if it fails. | ||||
| */ | */ | ||||
| final class PhutilDaemonOverseer { | final class PhutilDaemonOverseer extends Phobject { | ||||
| private $argv; | private $argv; | ||||
| private $moreArgs; | private $moreArgs; | ||||
| private $inAbruptShutdown; | private $inAbruptShutdown; | ||||
| private $inGracefulShutdown; | private $inGracefulShutdown; | ||||
| private static $instance; | private static $instance; | ||||
| private $config; | private $config; | ||||
| ▲ Show 20 Lines • Show All 471 Lines • Show Last 20 Lines | |||||