Interface ApplicationStateListener
-
public interface ApplicationStateListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplicationStarted(ApplicationInfo appInfo)Notification that an application has started.voidapplicationStarting(ApplicationInfo appInfo)Notification that an application is starting.voidapplicationStopped(ApplicationInfo appInfo)Notification that an application has stopped.voidapplicationStopping(ApplicationInfo appInfo)Notification that an application is stopping.
-
-
-
Method Detail
-
applicationStarting
void applicationStarting(ApplicationInfo appInfo) throws StateChangeException
Notification that an application is starting.- Parameters:
appInfo- The ApplicationInfo of the app- Throws:
StateChangeException
-
applicationStarted
void applicationStarted(ApplicationInfo appInfo) throws StateChangeException
Notification that an application has started.- Parameters:
appInfo- The ApplicationInfo of the app- Throws:
StateChangeException
-
applicationStopping
void applicationStopping(ApplicationInfo appInfo)
Notification that an application is stopping.- Parameters:
appInfo- The ApplicationInfo of the app
-
applicationStopped
void applicationStopped(ApplicationInfo appInfo)
Notification that an application has stopped.- Parameters:
appInfo- The ApplicationInfo of the app
-
-