1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-09 06:08:16 +01:00
parallel/src/Sync/ExitInterface.php

13 lines
312 B
PHP
Raw Normal View History

2015-08-07 01:59:25 +02:00
<?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();
}