glhcp/server/vendor/topthink/think-swoole/src/Coordinator.php

30 lines
485 B
PHP

<?php
namespace think\swoole;
use Swoole\Coroutine\Channel;
class Coordinator
{
/**
* @var Channel
*/
private $channel;
public function __construct()
{
$this->channel = new Channel(1);
}
public function yield($timeout = -1): bool
{
$this->channel->pop((float) $timeout);
return $this->channel->errCode === SWOOLE_CHANNEL_CLOSED;
}
public function resume(): void
{
$this->channel->close();
}
}