Package org.jboss.seam.jmx

Examples of org.jboss.seam.jmx.JBossClusterMonitor


      ServletLifecycle.beginSession( event.getSession() );
   }
  
   public void sessionDestroyed(HttpSessionEvent event)
   {
      JBossClusterMonitor monitor = JBossClusterMonitor.getInstance(event.getSession().getServletContext());
      if (monitor != null && monitor.failover())
      {
         // If application is unfarmed or all nodes shutdown simultaneously, cluster cache may still fail to retrieve SFSBs to destroy
         log.info("Detected fail-over, not destroying session context");
      }
      else
View Full Code Here


      ServletLifecycle.beginSession( event.getSession() );
   }
  
   public void sessionDestroyed(HttpSessionEvent event)
   {
      JBossClusterMonitor monitor = JBossClusterMonitor.getInstance(event.getSession().getServletContext());
      if (monitor != null && monitor.failover())
      {
         // If application is unfarmed or all nodes shutdown simultaneously, cluster cache may still fail to retrieve SFSBs to destroy
         log.debug("Detected fail-over, not destroying session context");
      }
      else
View Full Code Here

TOP

Related Classes of org.jboss.seam.jmx.JBossClusterMonitor

Copyright © 2018 www.massapicom. 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.