Event::RPC

Event::RPC is a event based transparent Client/Server RPC framework.
Download

Event::RPC Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Jrn Reder
  • Publisher web site:
  • http://search.cpan.org/~jred/

Event::RPC Tags


Event::RPC Description

Event::RPC is a event based transparent Client/Server RPC framework. Event::RPC is a event based transparent Client/Server RPC framework.SYNOPSIS #-- Server Code use Event::RPC::Server; use My::TestModule; my $server = Event::RPC::Server->new ( port => 5555, classes => { "My::TestModule" => { ... } }, ); $server->start; ---------------------------------------------------------- #-- Client Code use Event::RPC::Client; my $client = Event::RPC::Client->new ( server => "localhost", port => 5555, ); $client->connect; #-- Call methods of My::TestModule on the server my $obj = My::TestModule->new ( foo => "bar" ); my $foo = $obj->get_foo;ABSTRACTEvent::RPC supports you in developing Event based networking client/server applications with transparent object/method access from the client to the server. Network communication is optionally encrypted using IO::Socket::SSL. Several event loop managers are supported due to an extensible API. Currently Event and Glib are implemented. Requirements: · Perl


Event::RPC Related Software