1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-27 04:44:56 +01:00
parallel/lib/Sync/ExitResult.php
2017-07-28 17:34:24 -05:00

13 lines
290 B
PHP

<?php
namespace Amp\Parallel\Sync;
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();
}