https://github.com/bluet/AnyEvent-XMLRPC
(Perl) Non-Blocking XMLRPC. Originally a AnyEvent implementation of Frontier.
https://github.com/bluet/AnyEvent-XMLRPC
event-driven hacktoberfest perl rpc-framework
Last synced: 19 days ago
JSON representation
(Perl) Non-Blocking XMLRPC. Originally a AnyEvent implementation of Frontier.
- Host: GitHub
- URL: https://github.com/bluet/AnyEvent-XMLRPC
- Owner: bluet
- Created: 2009-08-06T23:07:11.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2026-04-14T21:15:05.000Z (2 months ago)
- Last Synced: 2026-04-26T10:28:48.366Z (about 2 months ago)
- Topics: event-driven, hacktoberfest, perl, rpc-framework
- Language: Perl
- Homepage:
- Size: 14.6 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
Awesome Lists containing this project
- awesome-eve-frontier - bluet/AnyEvent-XMLRPC - Blocking XMLRPC. Originally a AnyEvent implementation of Frontier. | (Perl)
README
=encoding utf8
=head1 NAME
AnyEvent::XMLRPC - Non-Blocking XMLRPC Server. Originally a AnyEvent implementation of Frontier.
=head1 VERSION
Version 0.05
=cut
=head1 SYNOPSIS
use AnyEvent::XMLRPC;
my $serv = AnyEvent::XMLRPC->new(
methods => {
'echo' => \&echo,
},
);
or
my $serv = AnyEvent::XMLRPC->new(
port => 9090,
uri => "/RPC2",
methods => {
'echo' => \&echo,
},
);
and
sub echo {
@rep = qw(bala bababa);
return \@rep;
}
$serv->run;
=head1 DESCRIPTION
I is a Non-Blocking XMLRPC Server.
Originally a L implementation of L.
I is base on elmex's L.
=head1 FUNCTIONS
=head2 new (%options)
=cut
=head1 AUTHOR
BlueT - Matthew Lien - 練喆明, C<< >>
=head1 BUGS
Please report any bugs or feature requests to C, or through
the web interface at L. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc AnyEvent::XMLRPC
You can also look for information at:
=over 4
=item * Git repository
L
=item * RT: CPAN's request tracker
L
=item * AnnoCPAN: Annotated CPAN documentation
L
=item * CPAN Ratings
L
=item * Search CPAN
L
=back
=head1 ACKNOWLEDGEMENTS
=head1 COPYRIGHT & LICENSE
Copyright 2009 BlueT - Matthew Lien - 練喆明, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut