Package org.jboss.invocation

Examples of org.jboss.invocation.InvokerProxyHA


    */
   public Object invoke(Invocation mi) throws Throwable
   {
      Method m = mi.getMethod();
      String methodName = m.getName();
      InvokerProxyHA proxy = (InvokerProxyHA) mi.getInvocationContext().getInvoker();
      // Implement local methods
      if( methodName.equals("toString") )
      {
         return toString(proxy);
      }
View Full Code Here


         txStickyTargets.put(tpc, stickyTarget);
        
         /* Put it in invoker proxy txFailoverAuthorizations to avoid failover being
          * allowed if the 1st EJB invocation within user trasnsaction fails with
          * GenericClusteringException.COMPLETED_NO */
         InvokerProxyHA proxy = (InvokerProxyHA)invocation.getInvocationContext().getInvoker();
         proxy.forbidTransactionFailover(tpc);
      }
   }  
View Full Code Here

  
   protected synchronized FamilyClusterInfo getFamilyClusterInfo(Invocation invocation) throws Exception
   {
      if (familyClusterInfo == null)
      {
         InvokerProxyHA proxy = (InvokerProxyHA)invocation.getInvocationContext().getInvoker();
         familyClusterInfo = proxy.getFamilyClusterInfo();
      }
     
      return familyClusterInfo;
   }  
View Full Code Here

TOP

Related Classes of org.jboss.invocation.InvokerProxyHA

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.