@@ -5,10 +5,10 @@ discard block |
||
5 | 5 | |
6 | 6 | require __DIR__ . '/../vendor/autoload.php'; |
7 | 7 | |
8 | -Amp\Loop::run(function () { |
|
8 | +Amp\Loop::run(function() { |
|
9 | 9 | $dispatcher = Dispatcher::amp(); |
10 | 10 | $dispatcher |
11 | - ->register('spawn', function (callable $process) { |
|
11 | + ->register('spawn', function(callable $process) { |
|
12 | 12 | static $pid = 1; |
13 | 13 | |
14 | 14 | $gen = $process($pid); |
@@ -17,35 +17,35 @@ discard block |
||
17 | 17 | |
18 | 18 | return $pid++; |
19 | 19 | }) |
20 | - ->register('send', function (int $pid, string $message, ...$arguments) { |
|
20 | + ->register('send', function(int $pid, string $message, ...$arguments) { |
|
21 | 21 | $signal = sprintf('%s.%d', $message, $pid); |
22 | 22 | |
23 | 23 | return yield $signal => $arguments; |
24 | 24 | }) |
25 | - ->register('receive', function (int $pid, string $message, callable $handler) use ($dispatcher) { |
|
25 | + ->register('receive', function(int $pid, string $message, callable $handler) use ($dispatcher) { |
|
26 | 26 | $signal = sprintf('%s.%d', $message, $pid); |
27 | 27 | |
28 | 28 | $dispatcher->register($signal, $handler); |
29 | 29 | }) |
30 | 30 | ; |
31 | 31 | |
32 | - $receiver = yield $dispatcher->dispatch('spawn', function (int $pid) { |
|
33 | - yield 'receive' => [$pid, 'ping', function () { |
|
32 | + $receiver = yield $dispatcher->dispatch('spawn', function(int $pid) { |
|
33 | + yield 'receive' => [$pid, 'ping', function() { |
|
34 | 34 | echo 'Ping!' . \PHP_EOL; |
35 | 35 | }]; |
36 | 36 | |
37 | - yield 'receive' => [$pid, 'pong', function () { |
|
37 | + yield 'receive' => [$pid, 'pong', function() { |
|
38 | 38 | echo 'Pong!' . \PHP_EOL; |
39 | 39 | }]; |
40 | 40 | }); |
41 | 41 | |
42 | - $senderOne = $dispatcher->dispatch('spawn', function () use ($receiver) { |
|
42 | + $senderOne = $dispatcher->dispatch('spawn', function() use ($receiver) { |
|
43 | 43 | yield 'send' => [$receiver, 'ping']; |
44 | 44 | yield new Delayed(500); |
45 | 45 | yield 'send' => [$receiver, 'ping']; |
46 | 46 | }); |
47 | 47 | |
48 | - $senderTwo = $dispatcher->dispatch('spawn', function () use ($receiver) { |
|
48 | + $senderTwo = $dispatcher->dispatch('spawn', function() use ($receiver) { |
|
49 | 49 | yield 'send' => [$receiver, 'pong']; |
50 | 50 | yield new Delayed(100); |
51 | 51 | yield 'send' => [$receiver, 'pong']; |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | -Amp\Loop::run(function () { |
|
30 | +Amp\Loop::run(function() { |
|
31 | 31 | $dispatcher = Dispatcher::amp(); |
32 | 32 | $dispatcher |
33 | - ->register(SimpleCommand::class, function (SimpleCommand $cmd) { |
|
33 | + ->register(SimpleCommand::class, function(SimpleCommand $cmd) { |
|
34 | 34 | yield new Delayed($cmd->delay); // Just do some heavy calculations |
35 | 35 | yield SimpleEvent::class => new SimpleEvent($cmd->num + $cmd->num); |
36 | 36 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | return $cmd->num; |
41 | 41 | }) |
42 | - ->register(SimpleEvent::class, function (SimpleEvent $event) { |
|
42 | + ->register(SimpleEvent::class, function(SimpleEvent $event) { |
|
43 | 43 | echo \sprintf('Signal dispatched with value: %d at %s' . \PHP_EOL, $event->num, \microtime(true)); |
44 | 44 | }) |
45 | 45 | ; |
@@ -5,10 +5,10 @@ |
||
5 | 5 | |
6 | 6 | require __DIR__ . '/../vendor/autoload.php'; |
7 | 7 | |
8 | -Amp\Loop::run(function () { |
|
8 | +Amp\Loop::run(function() { |
|
9 | 9 | $dispatcher = Dispatcher::amp(); |
10 | 10 | $dispatcher |
11 | - ->register('emit', function (string $string, int $num, int $delay = 100) { |
|
11 | + ->register('emit', function(string $string, int $num, int $delay = 100) { |
|
12 | 12 | for ($i = 0; $i < $num; $i++) { |
13 | 13 | echo $string; |
14 | 14 |
@@ -22,10 +22,10 @@ discard block |
||
22 | 22 | { |
23 | 23 | } |
24 | 24 | |
25 | -Amp\Loop::run(function () { |
|
25 | +Amp\Loop::run(function() { |
|
26 | 26 | $dispatcher = Dispatcher::amp(); |
27 | 27 | $dispatcher |
28 | - ->register(Ping::class, function (Ping $cmd) { |
|
28 | + ->register(Ping::class, function(Ping $cmd) { |
|
29 | 29 | if ($cmd->times > 0) { |
30 | 30 | $cmd->times--; |
31 | 31 | |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | yield new Stop(); |
37 | 37 | } |
38 | 38 | }) |
39 | - ->register(Pong::class, function (Pong $cmd) { |
|
39 | + ->register(Pong::class, function(Pong $cmd) { |
|
40 | 40 | echo 'Pong!' . \PHP_EOL; |
41 | 41 | |
42 | 42 | yield new Ping($cmd->times); |
43 | 43 | }) |
44 | - ->register(Stop::class, function () { |
|
44 | + ->register(Stop::class, function() { |
|
45 | 45 | echo 'Stop!' . \PHP_EOL; |
46 | 46 | }) |
47 | 47 | ; |