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();
}