Package com.alibaba.dubbo.rpc.protocol.dubbo.support

Examples of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService.echo()


  {
    DemoService service = new DemoServiceImpl();
    URL url = URL.valueOf("dubbo://127.0.0.1:9010/com.alibaba.dubbo.rpc.DemoService?service.filter=echo");
    protocol.export(proxy.getInvoker(service, DemoService.class, url));
    service = proxy.getProxy(protocol.refer(DemoService.class, url));
    assertEquals("123",service.echo("123"));
    // cast to EchoService
    EchoService echo = proxy.getProxy(protocol.refer(EchoService.class, url));
    assertEquals(echo.$echo("test"), "test");
    assertEquals(echo.$echo("abcdefg"), "abcdefg");
    assertEquals(echo.$echo(1234), 1234);
View Full Code Here


        remote = proxy.getProxy(protocol.refer(RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
       
        service.sayHello("world");
       
        // test netty client
        assertEquals("world", service.echo("world"));
        assertEquals("hello world@" + RemoteServiceImpl.class.getName(), remote.sayHello("world"));
       
        EchoService serviceEcho = (EchoService)service;
        assertEquals(serviceEcho.$echo("test"), "test");
       
View Full Code Here

    assertEquals(service.getSize(new String[]{"123", "456", "789"}), 3);

    final StringBuffer sb = new StringBuffer();
    for(int i=0;i<1024*64+32;i++)
      sb.append('A');
    assertEquals(sb.toString(), service.echo(sb.toString()));

    ExecutorService exec = Executors.newFixedThreadPool(10);
    for(int i=0;i<10;i++)
    {
      final int fi = i;
View Full Code Here

        public void run()
        {
          for(int i=0;i<30;i++)
          {
            System.out.println(fi+":"+counter.getAndIncrement());
            assertEquals(service.echo(sb.toString()), sb.toString());
          }
        }
      });
    }
    exec.shutdown();
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.