Interface SystemReadyListener
-
public interface SystemReadyListener
Listener which can get notified when the system ready state is changing.- Author:
- Michael Vorburger.ch
- See Also:
SystemReadyMonitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSystemBootReady()
Called back once when the system has become "fully ready" after the initial boot up.
-
-
-
Method Detail
-
onSystemBootReady
void onSystemBootReady() throws Exception
Called back once when the system has become "fully ready" after the initial boot up. In an OSGi context like a Karaf container environment, this means after all "boot features" have successfully loaded. In a plain Java Environment including in unit and component tests, this means after dependency injection object wiring (incl. invocation of all @PostConstruct "init" type methods) has completed.- Throws:
Exception
- for anything which should setSystemState.FAILURE
-
-