RPC::Serialized

RPC::Serialized is a Perl module that contains subroutine calls over the network using common serialization.
Download

RPC::Serialized Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Oliver Gorwits
  • Publisher web site:
  • http://search.cpan.org/~oliver/

RPC::Serialized Tags


RPC::Serialized Description

RPC::Serialized is a Perl module that contains subroutine calls over the network using common serialization. RPC::Serialized is a Perl module that contains subroutine calls over the network using common serialization.SYNOPSIS # for the RPC server... # choose one of the supplied server types (NetServer is Net::Server) use RPC::Serialized::Server::NetServer; my $s = RPC::Serialized::Server::NetServer->new; $s->run; # server process is now looping and waiting for RPC (like Apache prefork) # the default port number for Net::Server is 20203 # and so for the RPC client... use RPC::Serialized::Client::INET; my $c = RPC::Serialized::Client::INET->new({ io_socket_inet => {PeerPort => 20203}, }); my $result = $c->remote_sub_name(qw/ some data /); # remote_sub_name gets mapped to an invocation on the RPC server # it's best to wrap this in an eval{} block Requirements: · Perl


RPC::Serialized Related Software