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

20 lines
458 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2016-08-18 18:04:48 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Worker;
/**
* A runnable unit of execution.
*/
2016-08-18 18:04:48 +02:00
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.
2015-08-27 16:10:08 +02:00
*
2016-08-23 23:47:40 +02:00
* @param \Amp\Parallel\Worker\Environment
2015-08-27 16:10:08 +02:00
*
2016-08-18 18:04:48 +02:00
* @return mixed|\Interop\Async\Awaitable|\Generator
*/
2016-01-25 06:04:29 +01:00
public function run(Environment $environment);
}