mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
76 lines
1.4 KiB
PHP
76 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Worker\Internal;
|
|
|
|
use Amp\Parallel\Worker\Task;
|
|
use Amp\Parallel\Worker\Worker;
|
|
use Amp\Promise;
|
|
|
|
/** @internal */
|
|
final class PooledWorker implements Worker
|
|
{
|
|
/** @var callable */
|
|
private $push;
|
|
|
|
/** @var \Amp\Parallel\Worker\Worker */
|
|
private $worker;
|
|
|
|
/**
|
|
* @param \Amp\Parallel\Worker\Worker $worker
|
|
* @param callable $push Callable to push the worker back into the queue.
|
|
*/
|
|
public function __construct(Worker $worker, callable $push)
|
|
{
|
|
$this->worker = $worker;
|
|
$this->push = $push;
|
|
}
|
|
|
|
/**
|
|
* Automatically pushes the worker back into the queue.
|
|
*/
|
|
public function __destruct()
|
|
{
|
|
($this->push)($this->worker);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isRunning(): bool
|
|
{
|
|
return $this->worker->isRunning();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isIdle(): bool
|
|
{
|
|
return $this->worker->isIdle();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function enqueue(Task $task): Promise
|
|
{
|
|
return $this->worker->enqueue($task);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function shutdown(): Promise
|
|
{
|
|
return $this->worker->shutdown();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function kill()
|
|
{
|
|
$this->worker->kill();
|
|
}
|
|
}
|