Package de.willuhn.jameica.system
Interface ApplicationController
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationCallback
getApplicationCallback()
Erzeugt ein Callback-Objekt ueber das die Anwendung mit dem User kommunizieren kann.void
init()
Initialisiert den Controller.void
shutDown()
Beendet den Controllervoid
start(BackgroundTask task)
Startet einen Task im Hintergrund.
-
-
-
Method Detail
-
init
void init() throws de.willuhn.util.ApplicationException
Initialisiert den Controller.- Throws:
de.willuhn.util.ApplicationException
-
shutDown
void shutDown()
Beendet den Controller
-
getApplicationCallback
ApplicationCallback getApplicationCallback()
Erzeugt ein Callback-Objekt ueber das die Anwendung mit dem User kommunizieren kann.- Returns:
- Callback.
-
start
void start(BackgroundTask task)
Startet einen Task im Hintergrund.- Parameters:
task
- der zu startende Task.
-
-