Class ZlibDecoder
- java.lang.Object
-
- org.jboss.netty.handler.codec.oneone.OneToOneDecoder
-
- org.jboss.netty.handler.codec.compression.ZlibDecoder
-
- All Implemented Interfaces:
ChannelHandler,ChannelUpstreamHandler
public class ZlibDecoder extends OneToOneDecoder
Decompresses aChannelBufferusing the deflate algorithm.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]dictionaryprivate booleanfinishedprivate com.jcraft.jzlib.ZStreamz
-
Constructor Summary
Constructors Constructor Description ZlibDecoder()Creates 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Objectdecode(ChannelHandlerContext ctx, Channel channel, java.lang.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
-
-
-
-
Constructor Detail
-
ZlibDecoder
public ZlibDecoder()
Creates a new instance with the default wrapper (ZlibWrapper.ZLIB).- Throws:
CompressionException- if failed to initialize zlib
-
ZlibDecoder
public ZlibDecoder(ZlibWrapper wrapper)
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 Detail
-
isClosed
public boolean isClosed()
Returnstrueif and only if the end of the compressed stream has been reached.
-
decode
protected java.lang.Object decode(ChannelHandlerContext ctx, Channel channel, java.lang.Object msg) throws java.lang.Exception
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:
java.lang.Exception
-
-