|
NAMEAnyEvent::MPRPC - Simple TCP-based MPRPC client/server SYNOPSIS use AnyEvent::MPRPC;
my $server = mprpc_server '127.0.0.1', '4423';
$server->reg_cb(
echo => sub {
my ($res_cv, @params) = @_;
$res_cv->result(@params);
},
);
my $client = mprpc_client '127.0.0.1', '4423';
my $d = $client->call( echo => 'foo bar' );
my $res = $d->recv; # => 'foo bar';
DESCRIPTIONThis module provide TCP-based MessagePack RPC server/client implementation. AnyEvent::MPRPC provide you a couple of export functions that are shortcut of AnyEvent::MPRPC::Client and AnyEvent::MPRPC::Server. One is "mprpc_client" for Client, another is "mprpc_server" for Server. FUNCTIONSmprpc_server $address, $port;Create AnyEvent::MPRPC::Server object and return it. This is equivalent to: AnyEvent::MPRPC::Server->new(
address => $address,
port => $port,
);
See AnyEvent::MPRPC::Server for more detail. mprpc_client $hostname, $portCreate AnyEvent::MPRPC::Client object and return it. This is equivalent to: AnyEvent::MPRPC::Client->new(
host => $hostname,
port => $port,
);
See AnyEvent::MPRPC::Client for more detail. SEE ALSOAnyEvent::MPRPC::Client, AnyEvent::MPRPC::Server. AnyEvent::JSONRPC::Lite <http://msgpack.org/> <http://wiki.msgpack.org/display/MSGPACK/RPC+specification> AUTHORTokuhiro Matsuno <tokuhirom@cpan.org> THANKS TOtypester++ wrote AnyEvent::JSONRPC::Lite. This module takes A LOT OF CODE from that module =P COPYRIGHT AND LICENSECopyright (c) 2009 by tokuhirom. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module.
|