mirror of
https://github.com/danog/parallel.git
synced 2025-01-08 13:49:06 +01:00
13 lines
312 B
PHP
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();
|
|
}
|