1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 02:27:55 +01:00
parallel/lib/Sync/Internal/ExitStatus.php
2016-08-23 16:47:40 -05:00

13 lines
326 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel\Sync\Internal;
interface ExitStatus {
/**
* @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();
}