Package net.buffalo.protocal

Examples of net.buffalo.protocal.Signature


  public void invoke(Object service, Reader reader, Writer writer) {
    invoke0(service, writer, BuffaloProtocal.getInstance().unmarshall(reader));
  }

  private void invoke0(Object service, Writer writer, BuffaloCall call) {
    Signature signature = new Signature(service.getClass(),
        call.getMethodName(), call.getArgumentTypes());
   
    Method method = null;
    if (methodCache.get(signature) != null) {
      method = (Method) methodCache.get(signature);
View Full Code Here

TOP

Related Classes of net.buffalo.protocal.Signature

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.