The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Multi::Event

This module shows how to use Net::Curl::Multi interface with an event library, AnyEvent in this case.

Motivation

This is the most efficient method for using Net::Curl::Multi interface, but it requires a really good understanding of it. This code tries to show the quirks found when using event-based programming.

MODULE CODE

TEST Easy package

Multi::Event requires Easy object to provide finish() method.

TEST APPLICATION

        #!perl
        use strict;
        use warnings;
        use Easy::Event;
        use Multi::Event;
#nopod