--- AnyEvent-Fork-RPC/RPC.pm 2013/04/18 13:11:12 1.14 +++ AnyEvent-Fork-RPC/RPC.pm 2013/04/18 14:07:15 1.16 @@ -14,6 +14,8 @@ "MyModule::server", ); + use AnyEvent; + my $cv = AE::cv; $rpc->(1, 2, 3, sub { @@ -374,7 +376,9 @@ allows a single RPC call to execute concurrently. Setting C to a true value switches to another implementation that -uses L in the child and allows multiple concurrent RPC calls. +uses L in the child and allows multiple concurrent RPC calls (it +does not support recursion in the event loop however, blocking condvar +calls will fail). The actual API in the child is documented in the section that describes the calling semantics of the returned C<$rpc> function. @@ -695,6 +699,8 @@ problems. Alternatively, the parent could limit the amount of rpc calls that are outstanding. +Blocking use of condvars is not supported. + Using event-based modules such as L, L, L and so on is easy. @@ -767,8 +773,9 @@ =head1 SEE ALSO -L (to create the processes in the first place), -L (to manage whole pools of processes). +L, to create the processes in the first place. + +L, to manage whole pools of processes. =head1 AUTHOR AND CONTACT INFORMATION