Interface IBrolLoader<T>

Type Parameters:
T - the result type returned by the Worker's doInBackground and get methods
All Known Implementing Classes:
BrolsLoader, CoursesForSchoolClassLoader

public interface IBrolLoader<T>
Allows to load asynchronously data and to report informations about loading without freezing GUI. Provided by the broldev.core.model project.
Since:
1.0 Jan 7, 2009, broldev.core.model 0.0.1-SNAPSHOT dependency
Version:
1.0 Jan 7, 2009
Author:
Steph GAUDRY
  • Method Summary

    Modifier and Type
    Method
    Description
    Processor method called by the swing worker
  • Method Details

    • load

      T load(AbstractBrolWorker<T> worker)
      Processor method called by the swing worker
      Parameters:
      worker - instance to perform lengthy job
      Returns:
      the value returned by the worker.doInBackground and worker.get methods