mirror of
https://github.com/danog/amp.git
synced 2024-12-04 18:38:17 +01:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use Amp\Delayed;
|
|
use function Amp\await;
|
|
|
|
// Any function can call await(), not only closures. Calling this function outside a green thread with throw an Error.
|
|
function asyncTask(int $id): int
|
|
{
|
|
$value = await(new Delayed(1000, $id)); // Wait 1 second, simulating async IO.
|
|
|
|
if ($value & 1) {
|
|
throw new Exception("Something went wrong! Value: " . $value);
|
|
}
|
|
|
|
return $value;
|
|
};
|
|
|
|
// Invoking $callback returns an int, but is executed asynchronously.
|
|
$result = asyncTask(2); // Call a subroutine within this green thread, taking 1 second to return.
|
|
\var_dump($result);
|
|
|
|
try {
|
|
$result = asyncTask(3); // Call subroutine again, which now throws an exception after 1 second.
|
|
\var_dump($result);
|
|
} catch (Exception $exception) { // Exceptions thrown from async subroutines can be caught like any other.
|
|
\var_dump("Caught exception: " . $exception->getMessage());
|
|
}
|
|
|
|
$result = asyncTask(5); // Make another async subroutine call that will now throw from green thread.
|
|
\var_dump($result);
|
|
|