Uses of Class
io.netty.handler.codec.ProtocolDetectionResult
Packages that use ProtocolDetectionResult
Package
Description
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
Decodes an HAProxy proxy protocol header
-
Uses of ProtocolDetectionResult in io.netty.handler.codec
Methods in io.netty.handler.codec that return ProtocolDetectionResultModifier and TypeMethodDescriptionstatic <T> ProtocolDetectionResult<T> ProtocolDetectionResult.detected(T protocol) Returns aProtocolDetectionResultwhich holds the detected protocol.static <T> ProtocolDetectionResult<T> ProtocolDetectionResult.invalid()Returns aProtocolDetectionResultthat signals the data was invalid for the protocol.static <T> ProtocolDetectionResult<T> ProtocolDetectionResult.needsMoreData()Returns aProtocolDetectionResultthat signals that more data is needed to detect the protocol. -
Uses of ProtocolDetectionResult in io.netty.handler.codec.haproxy
Methods in io.netty.handler.codec.haproxy that return ProtocolDetectionResultModifier and TypeMethodDescriptionHAProxyMessageDecoder.detectProtocol(ByteBuf buffer) Returns theProtocolDetectionResultfor the givenByteBuf.