1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-11 16:49:51 +01:00
parallel/lib/Worker/Task.php
2017-01-09 11:11:25 -06:00

20 lines
428 B
PHP

<?php
namespace Amp\Parallel\Worker;
/**
* A runnable unit of execution.
*/
interface Task {
/**
* Runs the task inside the caller's context.
*
* Does not have to be a coroutine, can also be a regular function returning a value.
*
* @param \Amp\Parallel\Worker\Environment
*
* @return mixed|\AsyncInterop\Promise|\Generator
*/
public function run(Environment $environment);
}