WorkerStartEvent.php 370 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Events;
  3. use DB;
  4. use Hhxsv5\LaravelS\Swoole\Events\WorkerStartInterface;
  5. use Swoole\Http\Server;
  6. class WorkerStartEvent implements WorkerStartInterface
  7. {
  8. public function __construct()
  9. {
  10. }
  11. public function handle(Server $server, $workerId)
  12. {
  13. // TODO: Implement handle() method.
  14. DB::table('ws')->delete();
  15. }
  16. }