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

NAME

ZOOM::IRSpy::Task - base class for tasks in IRSpy

SYNOPSIS

 use ZOOM::IRSpy::Task;
 package ZOOM::IRSpy::Task::SomeTask;
 our @ISA = qw(ZOOM::IRSpy::Task);
 # ... override methods

DESCRIPTION

This class provides a base-class from which individual IRSpy task classes can be derived. For example, ZOOM::IRSpy::Task::Search will represent a searching task, carrying with it a query, a pointer to a result-set, etc.

The base class provides nothing more exciting than a link to a callback function to be called when the task is complete, and a pointer to the next task to be performed after this.

SEE ALSO

ZOOM::IRSpy

AUTHOR

Mike Taylor, <mike@indexdata.com>

COPYRIGHT AND LICENSE

Copyright (C) 2006 by Index Data ApS.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.