1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-11 16:49:51 +01:00
parallel/lib/Sync/Internal/ExitResult.php
2017-01-16 23:24:59 -06:00

13 lines
299 B
PHP

<?php
namespace Amp\Parallel\Sync\Internal;
interface ExitResult {
/**
* @return mixed Return value of the callable given to the execution context.
*
* @throws \Amp\Parallel\PanicError If the context exited with an uncaught exception.
*/
public function getResult();
}