forked from nikic/ditaio
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathawaitQueue.php
39 lines (31 loc) · 884 Bytes
/
awaitQueue.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
<?php
/**
* The source of this example is from Curio on GitHub
*
* @see https://github.com/dabeaz/curio/blob/master/examples/prodcons.py
*/
include 'vendor/autoload.php';
use Async\Misc\Queue;
async('producer', function (Queue $queue) {
foreach (range(1, 10) as $i) {
yield $queue->put($i);
}
yield $queue->join();
print('Producer done' . EOL);
});
async('consumer', function (Queue $queue) {
while (true) {
$item = yield $queue->get();
print('Consumer got ' . $item . EOL);
yield $queue->task_done();
}
});
async('main', function () {
$q = new Queue();
$prod_task = yield create_task(producer, $q); // Or yield await('spawn', producer, $q)
$cons_task = yield create_task(consumer, $q); // Or yield await('spawn', consumer, $q)
yield join_task($prod_task);
yield cancel_task($cons_task);
yield shutdown();
});
\coroutine_run(main);