1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/lib/Worker/Internal/TaskResult.php
2016-11-14 17:43:44 -06:00

29 lines
623 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel\Worker\Internal;
use Interop\Async\Promise;
abstract class TaskResult {
/** @var string Task identifier. */
private $id;
/**
* @param string $id Task identifier.
*/
public function __construct(string $id) {
$this->id = $id;
}
/**
* @return string Task identifier.
*/
public function getId(): string {
return $this->id;
}
/**
* @return \Interop\Async\Promise<mixed> Resolved with the task result or failure reason.
*/
abstract public function promise(): Promise;
}