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();
}