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

13 lines
290 B
PHP
Raw Normal View History

2016-12-29 19:16:04 -06:00
<?php
2015-08-06 18:59:25 -05:00
namespace Amp\Parallel\Sync;
2016-08-18 11:04:48 -05:00
2017-01-16 23:24:59 -06:00
interface ExitResult {
2015-08-06 18:59:25 -05:00
/**
* @return mixed Return value of the callable given to the execution context.
*
2016-08-23 16:47:40 -05:00
* @throws \Amp\Parallel\PanicError If the context exited with an uncaught exception.
2015-08-06 18:59:25 -05:00
*/
public function getResult();
}