Example usage for io.netty.handler.codec.http.websocketx.extensions.compression DeflateFrameClientExtensionHandshaker DeflateFrameClientExtensionHandshaker

List of usage examples for io.netty.handler.codec.http.websocketx.extensions.compression DeflateFrameClientExtensionHandshaker DeflateFrameClientExtensionHandshaker

Introduction

In this page you can find the example usage for io.netty.handler.codec.http.websocketx.extensions.compression DeflateFrameClientExtensionHandshaker DeflateFrameClientExtensionHandshaker.

Prototype

public DeflateFrameClientExtensionHandshaker(boolean useWebkitExtensionName) 

Source Link

Document

Constructor with default configuration.

Usage

From source file:io.gatling.http.client.impl.AllowClientNoContextWebSocketClientCompressionHandler.java

License:Apache License

private AllowClientNoContextWebSocketClientCompressionHandler() {
    super(new PerMessageDeflateClientExtensionHandshaker(6,
            ZlibCodecFactory.isSupportingWindowSizeAndMemLevel(), MAX_WINDOW_SIZE, true, false),
            new DeflateFrameClientExtensionHandshaker(false), new DeflateFrameClientExtensionHandshaker(true));
}