|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
public interface BackgroundListener extends EventListener
The Event Handler listener for the BackgroundWorker. The various methods in this interface are called at various points in the processing of the background task.
| Method Summary | |
|---|---|
void
|
doInBackground(BackgroundEvent evt)
Always called on a background thread. |
void
|
done(BackgroundEvent evt)
Always called on the EDT when all background work as finished |
void
|
process(BackgroundEvent evt)
Always called on the EDT. |
void
|
started(BackgroundEvent evt)
Always called on the EDT right before the background task actually begins. |
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
| Method Detail |
|---|
public void doInBackground(BackgroundEvent evt)
public void done(BackgroundEvent evt)
public void process(BackgroundEvent evt)
public void started(BackgroundEvent evt)
Groovy Documentation