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

NAME

Gungho::Engine - Base Class For Gungho Engine

SYNOPSIS

  package Gungho::Engine::SomeEngine;
  use strict;
  use base qw(Gungho::Engine);

  sub run
  {
     ....
  }

METHODS

handle_dns_response()

Handles the response from DNS lookups.

handle_response

Call finish_request() on the request, and delegates to Gungho's hnalde_response()

finish_request

Perform whatever cleanup required on the request

run()

Starts the engine. The exact behavior differs between each engines

stop()

Stops the engine. The exact behavior differs between each engines