Interface IDetachListener

    • Method Detail

      • onDetach

        default void onDetach​(Component component)
        Called when component is being detached via a call to Component.detach(). NOTICE: The component is in a fully detached state when this method is invoked; It is the listener's responsibility to maintain the detached state after this method is finished - which means if the listener causes any part of the component (eg model) to become reattached it is the listener's responsibility to detach it before this method exits.
        Parameters:
        component - component being detached
      • onDestroyListener

        default void onDestroyListener()
        Called when the application is being destroyed. Useful for cleaning up listener caches, etc.