diff options
author | Wolfy-J <[email protected]> | 2018-01-28 15:42:17 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-01-28 15:42:17 +0300 |
commit | f77a21dc89af9258451fcb7a6d47aa720978a619 (patch) | |
tree | fecc1285fcda08aa945f7651454a7689ad246935 /tests/stop.php | |
parent | a5a62eeb19e67cbeced09729757cbfdf2cde8821 (diff) |
stop by worker
Diffstat (limited to 'tests/stop.php')
-rw-r--r-- | tests/stop.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/stop.php b/tests/stop.php new file mode 100644 index 00000000..caa485d6 --- /dev/null +++ b/tests/stop.php @@ -0,0 +1,25 @@ +<?php +/** + * @var Goridge\RelayInterface $relay + */ + +use Spiral\Goridge; +use Spiral\RoadRunner; + +$rr = new RoadRunner\Worker($relay); + +$used = false; +while ($in = $rr->receive($ctx)) { + try { + if ($used) { + // kill on second attempt + $rr->stop(); + continue; + } + + $used = true; + $rr->send((string)getmypid()); + } catch (\Throwable $e) { + $rr->error((string)$e); + } +}
\ No newline at end of file |