1
0
mirror of https://github.com/danog/ipc.git synced 2024-12-02 09:27:46 +01:00
ipc/lib/Sync/ExitResult.php

14 lines
285 B
PHP
Raw Normal View History

2020-02-14 20:31:11 +01:00
<?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();
}