ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/MP.pm
(Generate patch)

Comparing AnyEvent-MP/MP.pm (file contents):
Revision 1.54 by root, Fri Aug 14 16:15:37 2009 UTC vs.
Revision 1.57 by root, Sat Aug 15 04:34:34 2009 UTC

197At least one additional noderef is required (either by specifying it 197At least one additional noderef is required (either by specifying it
198directly or because it is part of the configuration profile): The node 198directly or because it is part of the configuration profile): The node
199will try to connect to all of them and will become a slave attached to the 199will try to connect to all of them and will become a slave attached to the
200first node it can successfully connect to. 200first node it can successfully connect to.
201 201
202Note that slave nodes cannot change their name, and consequently, their
203master, so if the master goes down, the slave node will not function well
204anymore until it can re-establish conenciton to its master. This makes
205slave nodes unsuitable for long-term nodes or fault-tolerant networks.
206
202=back 207=back
203 208
204This function will block until all nodes have been resolved and, for slave 209This function will block until all nodes have been resolved and, for slave
205nodes, until it has successfully established a connection to a master 210nodes, until it has successfully established a connection to a master
206server. 211server.
212
213All the seednodes will also be specially marked to automatically retry
214connecting to them infinitely.
207 215
208Example: become a public node listening on the guessed noderef, or the one 216Example: become a public node listening on the guessed noderef, or the one
209specified via C<aemp> for the current node. This should be the most common 217specified via C<aemp> for the current node. This should be the most common
210form of invocation for "daemon"-type nodes. 218form of invocation for "daemon"-type nodes.
211 219
666 my $id = "$RUNIQ." . $ID++; 674 my $id = "$RUNIQ." . $ID++;
667 675
668 $_[0] =~ /::/ 676 $_[0] =~ /::/
669 or Carp::croak "spawn init function must be a fully-qualified name, caught"; 677 or Carp::croak "spawn init function must be a fully-qualified name, caught";
670 678
671 ($NODE{$noderef} || add_node $noderef) 679 snd_to_func $noderef, "AnyEvent::MP::_spawn" => $id, @_;
672 ->send (["", "AnyEvent::MP::_spawn" => $id, @_]);
673 680
674 "$noderef#$id" 681 "$noderef#$id"
675} 682}
676
677=back
678
679=head1 NODE MESSAGES
680
681Nodes understand the following messages sent to them. Many of them take
682arguments called C<@reply>, which will simply be used to compose a reply
683message - C<$reply[0]> is the port to reply to, C<$reply[1]> the type and
684the remaining arguments are simply the message data.
685
686While other messages exist, they are not public and subject to change.
687
688=over 4
689
690=cut
691
692=item lookup => $name, @reply
693
694Replies with the port ID of the specified well-known port, or C<undef>.
695
696=item devnull => ...
697
698Generic data sink/CPU heat conversion.
699
700=item relay => $port, @msg
701
702Simply forwards the message to the given port.
703
704=item eval => $string[ @reply]
705
706Evaluates the given string. If C<@reply> is given, then a message of the
707form C<@reply, $@, @evalres> is sent.
708
709Example: crash another node.
710
711 snd $othernode, eval => "exit";
712
713=item time => @reply
714
715Replies the the current node time to C<@reply>.
716
717Example: tell the current node to send the current time to C<$myport> in a
718C<timereply> message.
719
720 snd $NODE, time => $myport, timereply => 1, 2;
721 # => snd $myport, timereply => 1, 2, <time>
722 683
723=back 684=back
724 685
725=head1 AnyEvent::MP vs. Distributed Erlang 686=head1 AnyEvent::MP vs. Distributed Erlang
726 687

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines