Uses of Class
io.netty.handler.codec.DecoderResult
-
Packages that use DecoderResult Package Description io.netty.handler.codec 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.io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.multipart HTTP multipart support.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT.io.netty.handler.codec.socksx Encoder, decoder and their related message types for SOCKS protocol.io.netty.handler.codec.stomp STOMP codec -
-
Uses of DecoderResult in io.netty.handler.codec
Fields in io.netty.handler.codec declared as DecoderResult Modifier and Type Field Description static DecoderResult
DecoderResult. SUCCESS
static DecoderResult
DecoderResult. UNFINISHED
Methods in io.netty.handler.codec that return DecoderResult Modifier and Type Method Description DecoderResult
DecoderResultProvider. decoderResult()
Returns the result of decoding this object.static DecoderResult
DecoderResult. failure(java.lang.Throwable cause)
Methods in io.netty.handler.codec with parameters of type DecoderResult Modifier and Type Method Description void
DecoderResultProvider. setDecoderResult(DecoderResult result)
Updates the result of decoding this object. -
Uses of DecoderResult in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as DecoderResult Modifier and Type Field Description private DecoderResult
DefaultHttpObject. decoderResult
private DecoderResult
ComposedLastHttpContent. result
Methods in io.netty.handler.codec.http that return DecoderResult Modifier and Type Method Description DecoderResult
ComposedLastHttpContent. decoderResult()
DecoderResult
DefaultHttpObject. decoderResult()
DecoderResult
HttpObjectAggregator.AggregatedFullHttpMessage. decoderResult()
DecoderResult
ComposedLastHttpContent. getDecoderResult()
DecoderResult
DefaultHttpObject. getDecoderResult()
Deprecated.DecoderResult
HttpObject. getDecoderResult()
Deprecated.UseDecoderResultProvider.decoderResult()
instead.DecoderResult
HttpObjectAggregator.AggregatedFullHttpMessage. getDecoderResult()
Methods in io.netty.handler.codec.http with parameters of type DecoderResult Modifier and Type Method Description void
ComposedLastHttpContent. setDecoderResult(DecoderResult result)
void
DefaultHttpObject. setDecoderResult(DecoderResult decoderResult)
void
HttpObjectAggregator.AggregatedFullHttpMessage. setDecoderResult(DecoderResult result)
Constructors in io.netty.handler.codec.http with parameters of type DecoderResult Constructor Description ComposedLastHttpContent(HttpHeaders trailingHeaders, DecoderResult result)
-
Uses of DecoderResult in io.netty.handler.codec.http.multipart
Methods in io.netty.handler.codec.http.multipart that return DecoderResult Modifier and Type Method Description DecoderResult
HttpPostRequestEncoder.WrappedHttpRequest. decoderResult()
DecoderResult
HttpPostRequestEncoder.WrappedHttpRequest. getDecoderResult()
Deprecated.Methods in io.netty.handler.codec.http.multipart with parameters of type DecoderResult Modifier and Type Method Description void
HttpPostRequestEncoder.WrappedHttpRequest. setDecoderResult(DecoderResult result)
-
Uses of DecoderResult in io.netty.handler.codec.memcache
Fields in io.netty.handler.codec.memcache declared as DecoderResult Modifier and Type Field Description private DecoderResult
AbstractMemcacheObject. decoderResult
Methods in io.netty.handler.codec.memcache that return DecoderResult Modifier and Type Method Description DecoderResult
AbstractMemcacheObject. decoderResult()
Methods in io.netty.handler.codec.memcache with parameters of type DecoderResult Modifier and Type Method Description void
AbstractMemcacheObject. setDecoderResult(DecoderResult result)
-
Uses of DecoderResult in io.netty.handler.codec.mqtt
Fields in io.netty.handler.codec.mqtt declared as DecoderResult Modifier and Type Field Description private DecoderResult
MqttMessage. decoderResult
Methods in io.netty.handler.codec.mqtt that return DecoderResult Modifier and Type Method Description DecoderResult
MqttMessage. decoderResult()
Constructors in io.netty.handler.codec.mqtt with parameters of type DecoderResult Constructor Description MqttMessage(MqttFixedHeader mqttFixedHeader, java.lang.Object variableHeader, java.lang.Object payload, DecoderResult decoderResult)
-
Uses of DecoderResult in io.netty.handler.codec.socksx
Fields in io.netty.handler.codec.socksx declared as DecoderResult Modifier and Type Field Description private DecoderResult
AbstractSocksMessage. decoderResult
Methods in io.netty.handler.codec.socksx that return DecoderResult Modifier and Type Method Description DecoderResult
AbstractSocksMessage. decoderResult()
Methods in io.netty.handler.codec.socksx with parameters of type DecoderResult Modifier and Type Method Description void
AbstractSocksMessage. setDecoderResult(DecoderResult decoderResult)
-
Uses of DecoderResult in io.netty.handler.codec.stomp
Fields in io.netty.handler.codec.stomp declared as DecoderResult Modifier and Type Field Description private DecoderResult
DefaultStompContentSubframe. decoderResult
protected DecoderResult
DefaultStompHeadersSubframe. decoderResult
Methods in io.netty.handler.codec.stomp that return DecoderResult Modifier and Type Method Description DecoderResult
DefaultStompContentSubframe. decoderResult()
DecoderResult
DefaultStompHeadersSubframe. decoderResult()
Methods in io.netty.handler.codec.stomp with parameters of type DecoderResult Modifier and Type Method Description void
DefaultStompContentSubframe. setDecoderResult(DecoderResult decoderResult)
void
DefaultStompHeadersSubframe. setDecoderResult(DecoderResult decoderResult)
-