1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-08 13:49:06 +01:00
parallel/src/Sync/ExitInterface.php
2015-08-06 18:59:25 -05:00

13 lines
312 B
PHP

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