| ParallelUserAgent documentation | Contained in the ParallelUserAgent distribution. |
LWP::ParallelUA - Parallel LWP::UserAgent
require LWP::ParallelUA; $ua = LWP::ParallelUA->new(); (see description of LWP::Parallel::UserAgent)
ParallelUA is a simple frontend to the LWP::Parallel::UserAgent module. It is here in order to maintain the compatibility with previous releases. However, in order to prevent the previous need for changing the original LWP sources, all extension files have been moved to the LWP::Parallel subtree.
If you start from scratch, maybe you should start using LWP::Parallel and its submodules directly.
See the LWP::Parallel::UserAgent for the documentation on this module.
Marc Langheinrich, marclang@cpan.org
Copyright 1997-2004 Marc Langheinrich <marclang@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| ParallelUserAgent documentation | Contained in the ParallelUserAgent distribution. |
# -*- perl -*- # $Id: ParallelUA.pm,v 1.6 2004/02/10 15:19:19 langhein Exp $ package LWP::ParallelUA; use Exporter(); use LWP::Parallel::UserAgent qw(:CALLBACK); require 5.004; @ISA = qw(LWP::Parallel::UserAgent Exporter); @EXPORT = qw(); @EXPORT_OK = @LWP::Parallel::UserAgent::EXPORT_OK; %EXPORT_TAGS = %LWP::Parallel::UserAgent::EXPORT_TAGS; 1; __END__