Package com.alibaba.dubbo.remoting.transport.codec

Examples of com.alibaba.dubbo.remoting.transport.codec.CodecAdapter


    protected static Codec2 getChannelCodec(URL url) {
        String codecName = url.getParameter(Constants.CODEC_KEY, "telnet");
        if (ExtensionLoader.getExtensionLoader(Codec2.class).hasExtension(codecName)) {
            return ExtensionLoader.getExtensionLoader(Codec2.class).getExtension(codecName);
        } else {
            return new CodecAdapter(ExtensionLoader.getExtensionLoader(Codec.class)
                                               .getExtension(codecName));
        }
    }
View Full Code Here

TOP

Related Classes of com.alibaba.dubbo.remoting.transport.codec.CodecAdapter

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.