1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/Internal/TaskSuccess.php

34 lines
760 B
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Worker\Internal;
use Amp\Failure;
use Amp\Parallel\Worker\Task;
use Amp\Promise;
2017-05-18 09:51:31 +02:00
use Amp\Success;
2017-07-28 06:49:20 +02:00
/** @internal */
2018-10-21 17:54:46 +02:00
final class TaskSuccess extends TaskResult
2018-10-07 16:50:45 +02:00
{
/** @var mixed Result of task. */
private $result;
2017-05-18 09:51:31 +02:00
2018-10-07 16:50:45 +02:00
public function __construct(string $id, $result)
{
2016-09-07 18:38:46 +02:00
parent::__construct($id);
$this->result = $result;
}
2017-05-18 09:51:31 +02:00
2018-10-07 16:50:45 +02:00
public function promise(): Promise
{
if ($this->result instanceof \__PHP_Incomplete_Class) {
return new Failure(new \Error(\sprintf(
"Class instances returned from %s::run() must be autoloadable by the Composer autoloader",
Task::class
)));
}
return new Success($this->result);
}
}