Package org.jboss.ha.framework.interfaces

Examples of org.jboss.ha.framework.interfaces.GroupRpcDispatcher.callMethodOnCluster()


   @SuppressWarnings("unchecked")
   protected <T> List<T> callMethodOnPartition(String methodName, Object[] args, Class<?>[] types) throws Exception
   {
      GroupRpcDispatcher dispatcher = this.partition;
      return (List<T>) dispatcher.callMethodOnCluster(this.name, methodName, args, types, true);
   }

   protected void callAsyncMethodOnPartition(String methodName, Object[] args, Class<?>[] types) throws Exception
   {
      this.partition.callAsynchMethodOnCluster(this.name, methodName, args, types, true);
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.