Java io.netty.handler.codec.compression JdkZlibEncoder fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.compression JdkZlibEncoder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.compression JdkZlibEncoder.

The text is from its open source code.

Constructor

JdkZlibEncoder(int compressionLevel)
Creates a new zlib encoder with the specified compressionLevel and the default wrapper ( ZlibWrapper#ZLIB ).
JdkZlibEncoder(ZlibWrapper wrapper)
Creates a new zlib encoder with the default compression level ( 6 ) and the specified wrapper.
JdkZlibEncoder(byte[] dictionary)
Creates a new zlib encoder with the default compression level ( 6 ) and the specified preset dictionary.
JdkZlibEncoder()
Creates a new zlib encoder with the default compression level ( 6 ) and the default wrapper ( ZlibWrapper#ZLIB ).