mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 04:44:56 +01:00
39 lines
797 B
PHP
39 lines
797 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;
|
|
}
|
|
}
|