mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
25 lines
548 B
PHP
25 lines
548 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use Amp\Loop;
|
|
|
|
print "-- before Loop::run()" . PHP_EOL;
|
|
|
|
Loop::run(function () {
|
|
Loop::repeat(1000, function () {
|
|
print "++ Executing watcher created by Loop::repeat()" . PHP_EOL;
|
|
});
|
|
|
|
Loop::delay(5000, function () {
|
|
print "++ Executing watcher created by Loop::delay()" . PHP_EOL;
|
|
|
|
Loop::stop();
|
|
|
|
print "++ Loop will continue the current tick and stop afterwards" . PHP_EOL;
|
|
});
|
|
});
|
|
|
|
print "-- after Loop::run()" . PHP_EOL;
|