1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-12 00:59:46 +01:00
parallel/lib/Sync/Internal/ExitStatus.php

13 lines
303 B
PHP
Raw Normal View History

2015-08-07 01:59:25 +02:00
<?php
2016-08-18 18:04:48 +02:00
namespace Amp\Concurrent\Sync\Internal;
interface ExitStatus {
2015-08-07 01:59:25 +02:00
/**
* @return mixed Return value of the callable given to the execution context.
*
2016-08-18 18:04:48 +02:00
* @throws \Amp\Concurrent\PanicError If the context exited with an uncaught exception.
2015-08-07 01:59:25 +02:00
*/
public function getResult();
}