postLogout

This method is called by the Logout component after the logout has been successfully completed. It can be used to handle any kind of actions that should be performed after logout.

Your extending Application class can override this method, and include custom functionality as required.

Note that when a session timeout warning message is displayed (see the SessionMonitor parameter in the TIBCO Workspace Configuration and Customization guide), a blue mask is displayed behind the warning message, covering the application window. This ensures that application data is not visible if the workstation is left unattended and a session timeout is about to occur. When the session timeout occurs, it is up to the custom application to determine what to display upon logout. Logic should be added to the postLogout method to reset the application similarly to the way it is done in the customPostLogoutExample function.

The extending method must call the following method to include the functionality provided in the base Application class:

  • this.jsxsuper();

Syntax

postLogout();

Parameters

none

Returns

none