AnyEvent-XMLRPC

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use utf8;
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME             => 'AnyEvent::XMLRPC',
    AUTHOR           => q{BlueT - Matthew Lien - 練喆明 <BlueT@BlueT.org>},
    VERSION_FROM     => 'lib/AnyEvent/XMLRPC.pm',
    ABSTRACT_FROM    => 'lib/AnyEvent/XMLRPC.pm',

README.pod  view on Meta::CPAN

=encoding utf8

=head1 NAME

AnyEvent::XMLRPC - Non-Blocking XMLRPC Server. Originally a AnyEvent implementation of Frontier.

=head1 VERSION

Version 0.05


lib/AnyEvent/XMLRPC.pm  view on Meta::CPAN

package AnyEvent::XMLRPC;

use common::sense;
# roughly the same as, with much lower memory usage:
#
# use strict qw(vars subs);
# use feature qw(say state switch);
# no warnings;

use utf8;
#~ use Data::Dumper;
use Frontier::RPC2;

use base qw(AnyEvent::HTTPD);

=encoding utf8

=head1 NAME

AnyEvent::XMLRPC - Non-Blocking XMLRPC Server. Originally a AnyEvent implementation of Frontier.

=head1 VERSION

Version 0.05

=cut



( run in 0.929 second using v1.01-cache-2.11-cpan-49f99fa48dc )