Class ZlibDecoder
java.lang.Object
org.jboss.netty.handler.codec.oneone.OneToOneDecoder
org.jboss.netty.handler.codec.compression.ZlibDecoder
- All Implemented Interfaces:
ChannelHandler,ChannelUpstreamHandler
Decompresses a
ChannelBuffer using the deflate algorithm.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate byte[]private booleanprivate final com.jcraft.jzlib.ZStream -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance with the default wrapper (ZlibWrapper.ZLIB).ZlibDecoder(byte[] dictionary) Creates a new instance with the specified preset dictionary.ZlibDecoder(ZlibWrapper wrapper) Creates a new instance with the specified wrapper. -
Method Summary
Modifier and TypeMethodDescriptionprotected Objectdecode(ChannelHandlerContext ctx, Channel channel, Object msg) Transforms the specified received message into another message and return the transformed message.booleanisClosed()Returnstrueif and only if the end of the compressed stream has been reached.Methods inherited from class org.jboss.netty.handler.codec.oneone.OneToOneDecoder
handleUpstream
-
Field Details
-
z
private final com.jcraft.jzlib.ZStream z -
dictionary
private byte[] dictionary -
finished
private volatile boolean finished
-
-
Constructor Details
-
ZlibDecoder
public ZlibDecoder()Creates a new instance with the default wrapper (ZlibWrapper.ZLIB).- Throws:
CompressionException- if failed to initialize zlib
-
ZlibDecoder
Creates a new instance with the specified wrapper.- Throws:
CompressionException- if failed to initialize zlib
-
ZlibDecoder
public ZlibDecoder(byte[] dictionary) Creates a new instance with the specified preset dictionary. The wrapper is alwaysZlibWrapper.ZLIBbecause it is the only format that supports the preset dictionary.- Throws:
CompressionException- if failed to initialize zlib
-
-
Method Details
-
isClosed
public boolean isClosed()Returnstrueif and only if the end of the compressed stream has been reached. -
decode
Description copied from class:OneToOneDecoderTransforms the specified received message into another message and return the transformed message. Returnnullif the received message is supposed to be discarded.- Specified by:
decodein classOneToOneDecoder- Throws:
Exception
-