Changes between Version 7 and Version 8 of refactoring_harvesters


Ignore:
Timestamp:
Jun 23, 2011, 2:59:53 AM (13 years ago)
Author:
mcoudert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • refactoring_harvesters

    v7 v8  
    139139
    140140A quick overview of the design :
    141  * an !AbstractHarvester class. Each harvester will extend this abstract class. No needs to have multiple classes for specific harvesters, only one is needed (ie. !CSWHarvester extends !AbstractHarvester).
     141 * an !AbstractHarvester class. Each harvester will extend this abstract class. No needs to have multiple classes for specific harvesters, only one is needed (ie. CSWHarvester extends !AbstractHarvester).
    142142 * an !HarvestingTaskManager responsible of the harvesting tasks management.
    143143 * runnable tasks, executor services and thread pooling mecanisms are based on native/generic Java concepts : Runnable (java.lang.Runnable); Executors, !ScheduledExecutorService and !ThreadPoolExecutor (java.util.concurrent).