1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 09:57:51 +01:00
amp/examples/exceptions/caught.php

31 lines
699 B
PHP
Raw Normal View History

2017-09-20 14:47:32 +02:00
#!/usr/bin/env php
<?php
use Amp\Deferred;
use Amp\Loop;
require_once __DIR__ . "/../../vendor/autoload.php";
function asyncOperation() {
$def = new Deferred();
Loop::delay(1000, function () use ($def) {
$def->fail(new Exception("force exception"));
});
return $def->promise();
}
try {
Loop::run(function () {
try {
$res = yield asyncOperation();
echo "asyncOperation result -> " . $res . PHP_EOL;
} catch (Throwable $e) {
echo "asyncOperation catch -> " . $e->getMessage() . PHP_EOL;
}
});
} catch (Throwable $loopException) {
echo "loopException -> " . $loopException->getMessage() . PHP_EOL;
}