Package com.alibaba.dubbo.rpc.service

Examples of com.alibaba.dubbo.rpc.service.GenericService


       
        URL consumerurl = serviceurl;
       
        Invoker<GenericService> reference = protocol.refer(GenericService.class, consumerurl);
       
        GenericService demoProxy = (GenericService)proxy.getProxy(reference);
        Object obj = demoProxy.$invoke("enumlength", new String[]{Type[].class.getName()}, new Object[]{new Type[]{Type.High,Type.High}});
        System.out.println("obj---------->"+obj);
       
        invoker.destroy();
        reference.destroy();
    }
View Full Code Here

TOP

Related Classes of com.alibaba.dubbo.rpc.service.GenericService

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.