Package org.zkoss.zk.ui.sys

Examples of org.zkoss.zk.ui.sys.DesktopCache.stop()


  public void sessionDestroyed(Session sess) {
    final SessionCtrl sessCtrl = (SessionCtrl)sess;
    final DesktopCache dc = sessCtrl.getDesktopCache();
    if (dc != null) {
      sessCtrl.setDesktopCache(null);
      dc.stop();
    }
  }

  /** Invokes {@link #getDesktopCache}'s {@link DesktopCache#sessionWillPassivate}.
   */
 
View Full Code Here


  }
  public void stop(WebApp wapp) {
    DesktopCache dc = (DesktopCache)wapp.getAttribute(ATTR_CACHE);
    if (dc != null) {
      wapp.removeAttribute(ATTR_CACHE);
      dc.stop();
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.