smskin/laravel-daemon-supervisor
最新稳定版本:1.0.2
Composer 安装命令:
composer require smskin/laravel-daemon-supervisor
包简介
Daemon supervisor engine for laravel projects
README 文档
README
The idea for this library originated from studying the source code of Laravel Horizon.
Horizon starts a master process that spawns child processes to execute tasks from queues.
How It Works
We start a master process (supervisor), which spawns and manages child processes (worker).
The master process is subscribed to PCNTL signals. Upon receiving a signal, it first terminates the child processes and then stops itself.
Usage
Master Process (supervisor) - CLI
The artisan command class for the supervisor should extend SMSkin\LaravelSupervisor\Commands\SupervisorsCommand.
In the class, you need to implement the method protected function getWorkers(): Collection, which returns a collection of worker process models (classes that implement the SMSkin\LaravelSupervisor\Contracts\IWorker interface).
You can find an example of an artisan command in ./src/Examples/TestSupervisorCommand.php.
Worker Process (worker) - CLI
The artisan command class for the worker should extend SMSkin\LaravelSupervisor\Commands\WorkerCommand.
In the class, you need to implement two methods:
-
public function getSubscribedSignals(): array- an array of PCNTL signals that this process listens for. -
public function handleSignal(int $signal, false|int $previousExitCode = 0): int|false- a method called when a PCNTL signal is received. -
You can find an example of an artisan command in
./src/Examples/TestWorkerCommand.php.
Worker Process Model
The class should implement the SMSkin\LaravelSupervisor\Contracts\IWorker interface.
In the class, you need to implement the method public function getArtisanCommand(): string, which returns the artisan command corresponding to the worker process.
You can find an example class in ./src/Examples/TestWorker.php.
Projects that use this library (for extended example):
统计信息
- 总下载量: 1.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-24