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

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

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.


Mike Taylor, <mike@indexdata.com>

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.