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