mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
31 lines
582 B
PHP
31 lines
582 B
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Worker\Internal;
|
|
|
|
use Amp\Promise;
|
|
|
|
/** @internal */
|
|
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 \Amp\Promise<mixed> Resolved with the task result or failure reason.
|
|
*/
|
|
abstract public function promise(): Promise;
|
|
}
|