1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Sync/ExitResult.php

14 lines
295 B
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-08-07 01:59:25 +02:00
namespace Amp\Parallel\Sync;
2016-08-18 18:04:48 +02:00
2018-10-07 16:50:45 +02:00
interface ExitResult
{
2015-08-07 01:59:25 +02:00
/**
* @return mixed Return value of the callable given to the execution context.
*
2017-12-08 04:26:55 +01:00
* @throws \Amp\Parallel\Sync\PanicError If the context exited with an uncaught exception.
2015-08-07 01:59:25 +02:00
*/
public function getResult();
}