Package de.bamberg.ha.api

Examples of de.bamberg.ha.api.ServiceExecutorCallable


  public Future<DistributedExecutionResult> callServiceMethod(String serviceName, String methodName, Object... parameter) throws ServiceNotAvailableException, NoSuchMethodException,
  IllegalAccessException, InvocationTargetException {
   
    Future<DistributedExecutionResult> futureResult=null;
   
    ServiceExecutorCallable callable=new ServiceExecutorCallable(serviceName, methodName,parameter);
   
    Object obj=serviceRegistry.lookup(serviceName);
    if (obj!=null) {
     
      Class[] paramClasses = determineParameterClasses(parameter);
View Full Code Here

TOP

Related Classes of de.bamberg.ha.api.ServiceExecutorCallable

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.