Package io.netty.handler.codec.http.websocketx.extensions.compression

Examples of io.netty.handler.codec.http.websocketx.extensions.compression.WebSocketServerCompressionHandler


        if (sslCtx != null) {
            pipeline.addLast(sslCtx.newHandler(ch.alloc()));
        }
        pipeline.addLast(new HttpServerCodec());
        pipeline.addLast(new HttpObjectAggregator(65536));
        pipeline.addLast(new WebSocketServerCompressionHandler());
        pipeline.addLast(new WebSocketServerHandler());
    }
View Full Code Here

TOP

Related Classes of io.netty.handler.codec.http.websocketx.extensions.compression.WebSocketServerCompressionHandler

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.