Clarify SnappyFramedDecoder javadoc to make it as clear as possible regarding the default settings
This commit is contained in:
parent
81e3c1719a
commit
c1cbe8bec3
@ -28,6 +28,12 @@ import static io.netty.handler.codec.compression.Snappy.*;
|
|||||||
* Uncompresses a {@link ByteBuf} encoded with the Snappy framing format.
|
* Uncompresses a {@link ByteBuf} encoded with the Snappy framing format.
|
||||||
*
|
*
|
||||||
* See http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt
|
* See http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt
|
||||||
|
*
|
||||||
|
* Note that by default, validation of the checksum header in each chunk is
|
||||||
|
* DISABLED for performance improvements. If performance is less of an issue,
|
||||||
|
* or if you would prefer the safety that checksum validation brings, please
|
||||||
|
* use the {@link #SnappyFramedDecoder(boolean)} constructor with the argument
|
||||||
|
* set to {@code true}.
|
||||||
*/
|
*/
|
||||||
public class SnappyFramedDecoder extends ByteToByteDecoder {
|
public class SnappyFramedDecoder extends ByteToByteDecoder {
|
||||||
enum ChunkType {
|
enum ChunkType {
|
||||||
@ -48,7 +54,8 @@ public class SnappyFramedDecoder extends ByteToByteDecoder {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new snappy-framed decoder with validation of checksums
|
* Creates a new snappy-framed decoder with validation of checksums
|
||||||
* turned off
|
* turned OFF. To turn checksum validation on, please use the alternate
|
||||||
|
* {@link #SnappyFramedDecoder(boolean)} constructor.
|
||||||
*/
|
*/
|
||||||
public SnappyFramedDecoder() {
|
public SnappyFramedDecoder() {
|
||||||
this(false);
|
this(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user