1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 09:37:57 +01:00
parallel/examples/BlockingTask.php
Aaron Piotrowski b654463339
Fix code style
2018-10-07 09:50:45 -05:00

43 lines
809 B
PHP

<?php
namespace Amp\Parallel\Example;
use Amp\Parallel\Worker\Environment;
use Amp\Parallel\Worker\Task;
class BlockingTask implements Task
{
/**
* @var callable
*/
private $function;
/**
* @var mixed[]
*/
private $args;
/**
* @param callable $function Do not use a closure or non-serializable object.
* @param mixed ...$args Arguments to pass to the function. Must be serializable.
*/
public function __construct(callable $function, ...$args)
{
$this->function = $function;
$this->args = $args;
}
/**
* {@inheritdoc}
*/
public function run(Environment $environment)
{
return ($this->function)(...$this->args);
}
public function getArgs()
{
return $this->args;
}
}