Class WebSocketDecoderConfig
- java.lang.Object
-
- io.netty.handler.codec.http.websocketx.WebSocketDecoderConfig
-
public final class WebSocketDecoderConfig extends java.lang.ObjectFrames decoder configuration.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWebSocketDecoderConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanallowExtensions()booleanallowMaskMismatch()booleancloseOnProtocolViolation()booleanexpectMaskedFrames()intmaxFramePayloadLength()static WebSocketDecoderConfig.BuildernewBuilder()WebSocketDecoderConfig.BuildertoBuilder()java.lang.StringtoString()booleanwithUTF8Validator()
-
-
-
Method Detail
-
maxFramePayloadLength
public int maxFramePayloadLength()
-
expectMaskedFrames
public boolean expectMaskedFrames()
-
allowMaskMismatch
public boolean allowMaskMismatch()
-
allowExtensions
public boolean allowExtensions()
-
closeOnProtocolViolation
public boolean closeOnProtocolViolation()
-
withUTF8Validator
public boolean withUTF8Validator()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toBuilder
public WebSocketDecoderConfig.Builder toBuilder()
-
newBuilder
public static WebSocketDecoderConfig.Builder newBuilder()
-
-