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 class
WebSocketDecoderConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
allowExtensions()
boolean
allowMaskMismatch()
boolean
closeOnProtocolViolation()
boolean
expectMaskedFrames()
int
maxFramePayloadLength()
static WebSocketDecoderConfig.Builder
newBuilder()
WebSocketDecoderConfig.Builder
toBuilder()
String
toString()
boolean
withUTF8Validator()
-
-
-
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()
-
-