KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > api > backgroundtask > IBackgroundTaskManager


1 package org.columba.api.backgroundtask;
2
3 /**
4  * This manager runs in background.
5  * <p>
6  * If the user doesn't do anything with Columba, it starts some cleanup
7  * workers, like saving configuration, saving header-cache, etc.
8  *
9  * @author fdietz
10  */

11 public interface IBackgroundTaskManager {
12     
13     /**
14      * Register new background task.
15      *
16      * @param runnable background task
17      */

18     public abstract void register(Runnable JavaDoc runnable);
19 }
Popular Tags