Package rocket.remoting.rebind.rpc.java.servicemethodinvoker

Examples of rocket.remoting.rebind.rpc.java.servicemethodinvoker.ServiceMethodInvokerTemplatedFile


    context.info("Implementing " + method);
    context.branch();

    final NewMethod newMethod = this.createCorrespondingAsyncServiceInterfaceMethod(method, asyncServiceInterface, client);

    final ServiceMethodInvokerTemplatedFile body = new ServiceMethodInvokerTemplatedFile();
    newMethod.setBody(body);
    body.setMethod(newMethod);
    body.setParameters(newMethod.getParameters());
    body.setServiceInterface(serviceInterface);

    final Type serializationFactoryComposer = this.createSerializationFactoryComposer(method, client, serviceInterface);
    body.setSerializationFactoryComposer(serializationFactoryComposer);

    context.debug("Completed.");
    context.unbranch();
  }
View Full Code Here

TOP

Related Classes of rocket.remoting.rebind.rpc.java.servicemethodinvoker.ServiceMethodInvokerTemplatedFile

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.