1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/Task.php
2016-08-21 23:40:48 -05:00

20 lines
462 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Concurrent\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\Concurrent\Worker\Environment
*
* @return mixed|\Interop\Async\Awaitable|\Generator
*/
public function run(Environment $environment);
}