Module io.netty5.codec.http
Class WebSocketDecoderConfig
- java.lang.Object
-
- io.netty5.handler.codec.http.websocketx.WebSocketDecoderConfig
-
public final class WebSocketDecoderConfig extends Object
Frames 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()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()
-
toBuilder
public WebSocketDecoderConfig.Builder toBuilder()
-
newBuilder
public static WebSocketDecoderConfig.Builder newBuilder()
-
-