ok
Direktori : /proc/thread-self/root/home2/selectio/www/fms-worksuite/vendor/amphp/parallel/lib/Worker/ |
Current File : //proc/thread-self/root/home2/selectio/www/fms-worksuite/vendor/amphp/parallel/lib/Worker/Task.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|\Amp\Promise|\Generator */ public function run(Environment $environment); }