����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.131.93.117 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/public_html/vendor/laravel/horizon/src/Contracts/ |
Upload File : |
<?php namespace Laravel\Horizon\Contracts; interface ProcessRepository { /** * Get all of the orphan process IDs and the times they were observed. * * @param string $master * @return array */ public function allOrphans($master); /** * Record the given process IDs as orphaned. * * @param string $master * @param array $processIds * @return array */ public function orphaned($master, array $processIds); /** * Get the process IDs orphaned for at least the given number of seconds. * * @param string $master * @param int $seconds * @return array */ public function orphanedFor($master, $seconds); /** * Remove the given process IDs from the orphan list. * * @param string $master * @param array $processIds * @return void */ public function forgetOrphans($master, array $processIds); }