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

84 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace Icicle\Concurrent\Worker\Internal;
use Icicle\Concurrent\Worker\Task;
use Icicle\Concurrent\Worker\Worker;
class PooledWorker implements Worker
{
/**
* @var callable
*/
private $push;
/**
* @var \Icicle\Concurrent\Worker\Worker
*/
private $worker;
/**
* @param \Icicle\Concurrent\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()
{
2016-01-23 07:00:56 +01:00
($this->push)($this->worker);
}
/**
* {@inheritdoc}
*/
2016-01-23 07:00:56 +01:00
public function isRunning(): bool
{
return $this->worker->isRunning();
}
/**
* {@inheritdoc}
*/
2016-01-23 07:00:56 +01:00
public function isIdle(): bool
{
return $this->worker->isIdle();
}
/**
* {@inheritdoc}
*/
public function start()
{
$this->worker->start();
}
/**
* {@inheritdoc}
*/
2016-01-23 07:00:56 +01:00
public function enqueue(Task $task): \Generator
{
return $this->worker->enqueue($task);
}
/**
* {@inheritdoc}
*/
2016-01-23 07:00:56 +01:00
public function shutdown(): \Generator
{
return $this->worker->shutdown();
}
/**
* {@inheritdoc}
*/
public function kill()
{
$this->worker->kill();
}
}