NAME
HTTP::Request::FromLog::Engine::Base - Base class for HTTP::Request::FromLog::Engine::XXX.
SYNOPSIS
package HTTP::Request::FromLog::Engine::MyEngine;
use base qw(HTTP::Request::FromLog::Engine::Base);
sub parse {
......
}
DESCRIPTION
This class is base class for HTTP::Request::FromLog::Engine::XXX which you write your own custom engine class.
Every engine has to override `parse()` method.
METHOD
new()
AUTHOR
Takeshi Miki <miki@cpan.org>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.