2016-12-30 02:16:04 +01:00
|
|
|
<?php
|
2015-08-29 03:55:30 +02:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
namespace Amp\Parallel\Test\Worker;
|
2016-08-18 18:04:48 +02:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
use Amp\Parallel\Worker\{ Environment, Task };
|
2015-08-29 03:55:30 +02:00
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
class TestTask implements Task {
|
2015-08-29 03:55:30 +02:00
|
|
|
private $returnValue;
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function __construct($returnValue) {
|
2015-08-29 03:55:30 +02:00
|
|
|
$this->returnValue = $returnValue;
|
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function run(Environment $environment) {
|
2016-01-25 06:04:29 +01:00
|
|
|
return $this->returnValue;
|
2015-08-29 03:55:30 +02:00
|
|
|
}
|
|
|
|
}
|