Examples of ReplierDispatcher


Examples of com.alibaba.dubbo.remoting.exchange.support.ReplierDispatcher

    dataPackageTest(9010);
  }

  private static void startServer(int port) throws Exception
  {
      ReplierDispatcher dispatcher = new ReplierDispatcher();
      dispatcher.addReplier(RpcMessage.class, new RpcMessageHandler());
      dispatcher.addReplier(Object.class, new Replier<Object>() {
      public Object reply(ExchangeChannel channel, Object msg)
      {
        for(int i=0;i<10000;i++)
          System.currentTimeMillis();
        System.out.println("handle:"+msg+";thread:"+Thread.currentThread().getName());
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.