Package be.gaudry.model.thread
Interface IBrolLoader<T>
- Type Parameters:
T
- the result type returned by theWorker's
doInBackground
andget
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 TypeMethodDescriptionload(AbstractBrolWorker<T> worker)
Processor method called by the swing worker
-
Method Details
-
load
Processor method called by the swing worker- Parameters:
worker
- instance to perform lengthy job- Returns:
- the
value returned by the worker.doInBackground
andworker.get
methods
-