AnyEvent-MPRPC
view release on metacpan or search on metacpan
lib/AnyEvent/MPRPC/Server.pm view on Meta::CPAN
my $cv = AnyEvent::MPRPC::CondVar->new;
$cv->_cb(
sub { $res_cb->( result => $_[0]->recv ) },
sub { $res_cb->( error => $_[0]->recv ) },
);
$target ||= sub { shift->error(qq/No such method "@{[ $request->[MP_REQ_METHOD] ]}" found/) };
$target->( $cv, $request->[MP_REQ_PARAMS] );
};
}
__PACKAGE__->meta->make_immutable;
__END__
=head1 NAME
AnyEvent::MPRPC::Server - Simple TCP-based MessagePack RPC server
=head1 SYNOPSIS
use AnyEvent::MPRPC::Server;
my $server = AnyEvent::MPRPC::Server->new( port => 4423 );
$server->reg_cb(
echo => sub {
my ($res_cv, @params) = @_;
$res_cv->result(@params);
},
sum => sub {
my ($res_cv, @params) = @_;
$res_cv->result( $params[0] + $params[1] );
},
);
=head1 DESCRIPTION
This module is server part of L<AnyEvent::MPRPC>.
=head1 METHOD
=head1 new (%options)
Create server object, start listening socket, and return object.
my $server = AnyEvent::MPRPC::Server->new(
port => 4423,
);
Available C<%options> are:
=over 4
=item port => 'Int | Str'
Listening port or path to unix socket (Required)
=item address => 'Str'
Bind address. Default to undef: This means server binds all interfaces by default.
If you want to use unix socket, this option should be set to "unix/"
=item on_error => $cb->($handle, $fatal, $message)
Error callback which is called when some errors occured.
This is actually L<AnyEvent::Handle>'s on_error.
=item on_eof => $cb->($handle)
EOF callback. same as L<AnyEvent::Handle>'s on_eof callback.
=item on_accept => $cb->($fh, $host, $port)
=item on_dispatch => $cb->($indicator, $handle, $request);
=item handler_options => 'HashRef'
Hashref options of L<AnyEvent::Handle> that is used to handle client connections.
=back
=head2 reg_cb (%callbacks)
Register MessagePack RPC methods.
$server->reg_cb(
echo => sub {
my ($res_cv, @params) = @_;
$res_cv->result(@params);
},
sum => sub {
my ($res_cv, @params) = @_;
$res_cv->result( $params[0] + $params[1] );
},
);
=head3 callback arguments
MessagePack RPC callback arguments consists of C<$result_cv>, and request C<@params>.
my ($result_cv, @params) = @_;
C<$result_cv> is L<AnyEvent::MPRPC::CondVar> object.
Callback must be call C<<$result_cv->result>> to return result or C<<$result_cv->error>> to return error.
If C<$result_cv> is not defined, it is notify request, so you don't have to return response. See L<AnyEvent::MPRPC::Client> notify method.
C<@params> is same as request parameter.
=head1 AUTHOR
Tokuhiro Matsuno <tokuhirom@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2009 by tokuhirom.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
( run in 1.395 second using v1.01-cache-2.11-cpan-e93a5daba3e )