1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-06 12:48:28 +01:00
parallel/lib/Sync/ExitResult.php

13 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
2017-01-17 06:24:59 +01: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();
}