| Revision: | 1.1 |
| Committed: | Fri Aug 28 14:43:53 2009 UTC (17 years ago) by elmex |
| Branch: | MAIN |
| Log Message: | more work on the intro. |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | elmex | 1.1 | #!/opt/perl/bin/perl |
| 2 | use AnyEvent; | ||
| 3 | use AnyEvent::MP; | ||
| 4 | |||
| 5 | my $end_cv = AnyEvent->condvar; | ||
| 6 | |||
| 7 | my $port = port; | ||
| 8 | |||
| 9 | rcv $port, test => sub { | ||
| 10 | my ($data) = @_; | ||
| 11 | $end_cv->send ($data); | ||
| 12 | }; | ||
| 13 | |||
| 14 | snd $port, test => 123; | ||
| 15 | |||
| 16 | print "Ending with: " . $end_cv->recv . "\n"; |