Package com.alibaba.dubbo.remoting.exchange.support

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

Related Classes of com.alibaba.dubbo.remoting.exchange.support.ReplierDispatcher

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.