public interface LogoutListener
Every logout-listener must contain the logout() API, which
is invoked at user logout (user.logout()). Any number of
logout-listeners may be added to a given user object using the
addLogoutListener(LogoutListener) API. A user's logout-
listeners will be invoked in the order in which they were added.
| Modifier and Type | Method and Description |
|---|---|
void |
logout()
The logout callback function; called from the user when logging out.
|