1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/Internal/PooledWorker.php
Aaron Piotrowski 312aecf1ff
Remove Worker::start()
The context can automatically be started when a job is enqueued.
2017-12-13 14:14:31 -06:00

68 lines
1.3 KiB
PHP

<?php
namespace Amp\Parallel\Worker\Internal;
use Amp\Parallel\Worker\Task;
use Amp\Parallel\Worker\Worker;
use Amp\Promise;
/** @internal */
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();
}
}