forked from nikic/ditaio
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathspawnProgress.php
58 lines (46 loc) · 1.13 KB
/
spawnProgress.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
include 'vendor/autoload.php';
use Async\Spawn\Channeled;
use function Async\Worker\progress_task;
use function Async\Worker\spawn_progress;
function repeat()
{
$counter = 0;
while (true) {
$counter++;
if ($counter == 200) {
$counter = 0;
\printf(".");
}
yield;
}
}
function main()
{
$ipc = new Channeled();
echo "Let's play, ";
yield \away(\repeat());
$pTask = yield progress_task(function ($type, $data) use ($ipc) {
echo $ipc->recv();
if ('ping' === $data) {
$ipc->send('pang' . \PHP_EOL);
} elseif (!$ipc->isClosed()) {
$ipc->send('pong. ' . \PHP_EOL);
$ipc->close();
}
});
$process = yield spawn_progress(
function (Channeled $channel) {
$channel->write('ping');
echo $channel->read();
echo $channel->read();
return 'The game!';
},
$ipc,
$pTask
);
$result = yield \gather($process);
echo \EOL . "I like, " . $result[$process] . \EOL;
yield \shutdown();
}
\coroutine_run(\main());