Package io.reactivex.netty.protocol.text

Examples of io.reactivex.netty.protocol.text.SimpleTextProtocolConfigurator


    public static PipelineConfigurator<String, String> textOnlyConfigurator(Charset inputCharset, Charset outputCharset) {
        return new StringMessageConfigurator(inputCharset, outputCharset);
    }

    public static PipelineConfigurator<String, String> stringMessageConfigurator() {
        return new SimpleTextProtocolConfigurator();
    }
View Full Code Here

TOP

Related Classes of io.reactivex.netty.protocol.text.SimpleTextProtocolConfigurator

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.