{"id":49841911,"url":"https://github.com/bluet/AnyEvent-XMLRPC","last_synced_at":"2026-05-30T21:00:39.206Z","repository":{"id":630414,"uuid":"271142","full_name":"bluet/AnyEvent-XMLRPC","owner":"bluet","description":"(Perl) Non-Blocking XMLRPC. Originally a AnyEvent implementation of Frontier.","archived":false,"fork":false,"pushed_at":"2026-04-14T21:15:05.000Z","size":15,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-26T10:28:48.366Z","etag":null,"topics":["event-driven","hacktoberfest","perl","rpc-framework"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bluet.png","metadata":{"files":{"readme":"README.pod","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-08-06T23:07:11.000Z","updated_at":"2026-04-14T21:15:06.000Z","dependencies_parsed_at":"2022-07-07T18:10:55.059Z","dependency_job_id":null,"html_url":"https://github.com/bluet/AnyEvent-XMLRPC","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bluet/AnyEvent-XMLRPC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2FAnyEvent-XMLRPC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2FAnyEvent-XMLRPC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2FAnyEvent-XMLRPC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2FAnyEvent-XMLRPC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluet","download_url":"https://codeload.github.com/bluet/AnyEvent-XMLRPC/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2FAnyEvent-XMLRPC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33709269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["event-driven","hacktoberfest","perl","rpc-framework"],"created_at":"2026-05-14T07:01:36.527Z","updated_at":"2026-05-30T21:00:39.200Z","avatar_url":"https://github.com/bluet.png","language":"Perl","funding_links":[],"categories":["Perl"],"sub_categories":[],"readme":"=encoding utf8\n\n=head1 NAME\n\nAnyEvent::XMLRPC - Non-Blocking XMLRPC Server. Originally a AnyEvent implementation of Frontier.\n\n=head1 VERSION\n\nVersion 0.05\n\n\n=cut\n\n=head1 SYNOPSIS\n\n    use AnyEvent::XMLRPC;\n\n\tmy $serv = AnyEvent::XMLRPC-\u003enew(\n\t\tmethods =\u003e {\n\t\t\t'echo' =\u003e \\\u0026echo,\n\t\t},\n\t);\nor\n\n\tmy $serv = AnyEvent::XMLRPC-\u003enew(\n\t\tport\t=\u003e 9090,\n\t\turi\t=\u003e \"/RPC2\",\n\t\tmethods =\u003e {\n\t\t\t'echo' =\u003e \\\u0026echo,\n\t\t},\n\t);\n\nand\n\n\tsub echo {\n\t\t@rep = qw(bala bababa);\n\t\treturn \\@rep;\n\t}\n\n\t$serv-\u003erun;\n\n=head1 DESCRIPTION\n\nI\u003cAnyEvent::XMLRPC\u003e is a Non-Blocking XMLRPC Server.\nOriginally a L\u003cAnyEvent\u003e implementation of L\u003cFrontier\u003e.\nI\u003cAnyEvent::XMLRPC\u003e is base on elmex's L\u003cAnyEvent::HTTPD\u003e.\n\n=head1 FUNCTIONS\n\n=head2 new (%options)\n\n\n=cut\n\n=head1 AUTHOR\n\nBlueT - Matthew Lien - 練喆明, C\u003c\u003c \u003cBlueT at BlueT.org\u003e \u003e\u003e\n\n=head1 BUGS\n\nPlease report any bugs or feature requests to C\u003cbug-anyevent-xmlrpc at rt.cpan.org\u003e, or through\nthe web interface at L\u003chttp://rt.cpan.org/NoAuth/ReportBug.html?Queue=AnyEvent-XMLRPC\u003e.  I will be notified, and then you'll\nautomatically be notified of progress on your bug as I make changes.\n\n\n\n\n=head1 SUPPORT\n\nYou can find documentation for this module with the perldoc command.\n\n    perldoc AnyEvent::XMLRPC\n\n\nYou can also look for information at:\n\n=over 4\n\n=item * Git repository\n\nL\u003chttp://github.com/BlueT/AnyEvent-XMLRPC\u003e\n\n=item * RT: CPAN's request tracker\n\nL\u003chttp://rt.cpan.org/NoAuth/Bugs.html?Dist=AnyEvent-XMLRPC\u003e\n\n=item * AnnoCPAN: Annotated CPAN documentation\n\nL\u003chttp://annocpan.org/dist/AnyEvent-XMLRPC\u003e\n\n=item * CPAN Ratings\n\nL\u003chttp://cpanratings.perl.org/d/AnyEvent-XMLRPC\u003e\n\n=item * Search CPAN\n\nL\u003chttp://search.cpan.org/dist/AnyEvent-XMLRPC\u003e\n\n=back\n\n\n=head1 ACKNOWLEDGEMENTS\n\n\n=head1 COPYRIGHT \u0026 LICENSE\n\nCopyright 2009 BlueT - Matthew Lien - 練喆明, all rights reserved.\n\nThis program is free software; you can redistribute it and/or modify it\nunder the same terms as Perl itself.\n\n\n\n=cut\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluet%2FAnyEvent-XMLRPC","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluet%2FAnyEvent-XMLRPC","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluet%2FAnyEvent-XMLRPC/lists"}