mirror of
https://github.com/danog/ipc.git
synced 2024-12-02 09:27:46 +01:00
14 lines
285 B
PHP
14 lines
285 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Ipc\Sync;
|
||
|
|
||
|
interface ExitResult
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed Return value of the callable given to the execution context.
|
||
|
*
|
||
|
* @throws \Amp\Ipc\Sync\PanicError If the context exited with an uncaught exception.
|
||
|
*/
|
||
|
public function getResult();
|
||
|
}
|