Package com.microstrategy.web.platform
Interface AppEventListenerProvider
-
public interface AppEventListenerProviderThis is the SPI (i.e., Service Provider Interface) for registering the event listener for the application.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidonAppDestroy(ContainerServices containerServices)Called when the application is about to be shut down.default voidonAppInit(ContainerServices containerServices)Called when the application is initialized.default voidonUserLogout(ContainerServices containerServices)Called when a user is logged out.
-
-
-
Method Detail
-
onAppInit
default void onAppInit(ContainerServices containerServices)
Called when the application is initialized. All the global objects are available at this point.- Parameters:
containerServices-
-
onAppDestroy
default void onAppDestroy(ContainerServices containerServices)
Called when the application is about to be shut down.- Parameters:
containerServices-
-
onUserLogout
default void onUserLogout(ContainerServices containerServices)
Called when a user is logged out.- Parameters:
containerServices-
-
-