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.152 by root, Sun Jul 29 02:23:34 2018 UTC vs.
Revision 1.156 by root, Sat Oct 23 03:35:49 2021 UTC

76 76
77=over 4 77=over 4
78 78
79=item port 79=item port
80 80
81Not to be confused with a TCP port, a "port" is something you can send 81Not to be confused with TCP ports, a "port" is something you can send
82messages to (with the C<snd> function). 82messages to (with the C<snd> function).
83 83
84Ports allow you to register C<rcv> handlers that can match all or just 84Ports allow you to register C<rcv> handlers that can match all or just
85some messages. Messages send to ports will not be queued, regardless of 85some messages. Messages send to ports will not be queued, regardless of
86anything was listening for them or not. 86whether anything was listening for them or not.
87 87
88Ports are represented by (printable) strings called "port IDs". 88Ports are represented by (printable) strings called "port IDs".
89 89
90=item port ID - C<nodeid#portname> 90=item port ID - C<nodeid#portname>
91 91
207use base "Exporter"; 207use base "Exporter";
208 208
209our $VERSION = '2.02'; # also in MP/Config.pm 209our $VERSION = '2.02'; # also in MP/Config.pm
210 210
211our @EXPORT = qw( 211our @EXPORT = qw(
212 configure
213
212 NODE $NODE 214 NODE $NODE
213 configure 215 *SELF
216
214 node_of port_is_local 217 node_of port_is_local
218
215 snd kil 219 snd kil
216 db_set db_del
217 db_mon db_family db_keys db_values
218
219 *SELF
220
221 port rcv mon mon_guard psub peval spawn cal 220 port rcv mon mon_guard psub peval spawn cal
222 db_set db_del db_reg 221 db_set db_del db_reg
223 db_mon db_family db_keys db_values 222 db_mon db_family db_keys db_values
224 223
225 after 224 after
303this process. If not, then the profile name will be used as node ID, with 302this process. If not, then the profile name will be used as node ID, with
304a unique randoms tring (C</%u>) appended. 303a unique randoms tring (C</%u>) appended.
305 304
306The node ID can contain some C<%> sequences that are expanded: C<%n> 305The node ID can contain some C<%> sequences that are expanded: C<%n>
307is expanded to the local nodename, C<%u> is replaced by a random 306is expanded to the local nodename, C<%u> is replaced by a random
308strign to make the node unique. For example, the F<aemp> commandline 307string to make the node unique. For example, the F<aemp> commandline
309utility uses C<aemp/%n/%u> as nodename, which might expand to 308utility uses C<aemp/%n/%u> as nodename, which might expand to
310C<aemp/cerebro/ZQDGSIkRhEZQDGSIkRhE>. 309C<aemp/cerebro/ZQDGSIkRhEZQDGSIkRhE>.
311 310
312=item step 2, bind listener sockets 311=item step 2, bind listener sockets
313 312
651In the last form (message), a message of the form C<$rcvport, @msg, 650In the last form (message), a message of the form C<$rcvport, @msg,
652@reason> will be C<snd>. 651@reason> will be C<snd>.
653 652
654Monitoring-actions are one-shot: once messages are lost (and a monitoring 653Monitoring-actions are one-shot: once messages are lost (and a monitoring
655alert was raised), they are removed and will not trigger again, even if it 654alert was raised), they are removed and will not trigger again, even if it
656turns out that the port is still alive. 655turns out that the port is still alive (but monitoring actions added after
656that will again trigger).
657 657
658As a rule of thumb, monitoring requests should always monitor a remote 658As a rule of thumb, monitoring requests should always monitor a remote
659port locally (using a local C<$rcvport> or a callback). The reason is that 659port locally (using a local C<$rcvport> or a callback). The reason is that
660kill messages might get lost, just like any other message. Another less 660kill messages might get lost, just like any other message. Another less
661obvious reason is that even monitoring requests can get lost (for example, 661obvious reason is that even monitoring requests can get lost (for example,
877#=item $cb2 = timeout $seconds, $cb[, @args] 877#=item $cb2 = timeout $seconds, $cb[, @args]
878 878
879=item cal $port, @msg, $callback[, $timeout] 879=item cal $port, @msg, $callback[, $timeout]
880 880
881A simple form of RPC - sends a message to the given C<$port> with the 881A simple form of RPC - sends a message to the given C<$port> with the
882given contents (C<@msg>), but adds a reply port to the message. 882given contents (C<@msg>), but appends a reply port to the message.
883 883
884The reply port is created temporarily just for the purpose of receiving 884The reply port is created temporarily just for the purpose of receiving
885the reply, and will be C<kil>ed when no longer needed. 885the reply, and will be C<kil>ed when no longer needed.
886 886
887A reply message sent to the port is passed to the C<$callback> as-is. 887A reply message sent to the port is passed to the C<$callback> as-is.
966 966
967Different subkeys in the same family can be owned by different nodes 967Different subkeys in the same family can be owned by different nodes
968without problems, and in fact, this is the common method to create worker 968without problems, and in fact, this is the common method to create worker
969pools. For example, a worker port for image scaling might do this: 969pools. For example, a worker port for image scaling might do this:
970 970
971 db_set my_image_scalers => $port; 971 db_set my_image_scalers => $port; # value not used
972 972
973And clients looking for an image scaler will want to get the 973And clients looking for an image scaler will want to get the
974C<my_image_scalers> keys from time to time: 974C<my_image_scalers> keys from time to time:
975 975
976 db_keys my_image_scalers => sub { 976 db_keys my_image_scalers => sub {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines