--- AnyEvent-MP/MP.pm 2009/08/04 18:33:30 1.22 +++ AnyEvent-MP/MP.pm 2009/08/04 20:00:00 1.24 @@ -32,9 +32,12 @@ Despite its simplicity, you can securely message other processes running on the same or other hosts. -At the moment, this module family is severly brokena nd underdocumented, +For an introduction to this module family, see the L +manual page. + +At the moment, this module family is severly broken and underdocumented, so do not use. This was uploaded mainly to reserve the CPAN namespace - -stay tuned! +stay tuned! The basic API should be finished, however. =head1 CONCEPTS @@ -244,6 +247,16 @@ mon $port, sub { 0 && @refs } } +=item lnk $port1, $port2 + +Link two ports. This is simply a shorthand for: + + mon $port1, $port2; + mon $port2, $port1; + +It means that if either one is killed abnormally, the other one gets +killed as well. + =item $local_port = port Create a new local port object that supports message matching.