Uses of Interface
io.netty.buffer.ByteBufHolder
-
Packages that use ByteBufHolder Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.udt UDT Transport.io.netty.channel.unix Unix specific transport.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.dns DNS codec.io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol headerio.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.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.smtp SMTP codec.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.codec.stomp STOMP codecio.netty.handler.ssl SSL · TLS implementation based onSSLEngine
-
-
Uses of ByteBufHolder in io.netty.buffer
Classes in io.netty.buffer that implement ByteBufHolder Modifier and Type Class Description class
DefaultByteBufHolder
Default implementation of aByteBufHolder
that holds it's data in aByteBuf
.Methods in io.netty.buffer that return ByteBufHolder Modifier and Type Method Description ByteBufHolder
ByteBufHolder. copy()
Creates a deep copy of thisByteBufHolder
.ByteBufHolder
DefaultByteBufHolder. copy()
Creates a deep copy of thisByteBufHolder
.ByteBufHolder
ByteBufHolder. duplicate()
Duplicates thisByteBufHolder
.ByteBufHolder
DefaultByteBufHolder. duplicate()
Duplicates thisByteBufHolder
.ByteBufHolder
ByteBufHolder. replace(ByteBuf content)
Returns a newByteBufHolder
which contains the specifiedcontent
.ByteBufHolder
DefaultByteBufHolder. replace(ByteBuf content)
Returns a newByteBufHolder
which contains the specifiedcontent
.ByteBufHolder
ByteBufHolder. retain()
ByteBufHolder
ByteBufHolder. retain(int increment)
ByteBufHolder
DefaultByteBufHolder. retain()
ByteBufHolder
DefaultByteBufHolder. retain(int increment)
ByteBufHolder
ByteBufHolder. retainedDuplicate()
Duplicates thisByteBufHolder
.ByteBufHolder
DefaultByteBufHolder. retainedDuplicate()
Duplicates thisByteBufHolder
.ByteBufHolder
ByteBufHolder. touch()
ByteBufHolder
ByteBufHolder. touch(java.lang.Object hint)
ByteBufHolder
DefaultByteBufHolder. touch()
ByteBufHolder
DefaultByteBufHolder. touch(java.lang.Object hint)
-
Uses of ByteBufHolder in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ByteBufHolder Modifier and Type Class Description class
SegmentedDatagramPacket
Deprecated. -
Uses of ByteBufHolder in io.netty.channel.sctp
Classes in io.netty.channel.sctp that implement ByteBufHolder Modifier and Type Class Description class
SctpMessage
Representation of SCTP Data Chunk -
Uses of ByteBufHolder in io.netty.channel.socket
Classes in io.netty.channel.socket that implement ByteBufHolder Modifier and Type Class Description class
DatagramPacket
The message container that is used forDatagramChannel
to communicate with the remote peer. -
Uses of ByteBufHolder in io.netty.channel.udt
Classes in io.netty.channel.udt that implement ByteBufHolder Modifier and Type Class Description class
UdtMessage
Deprecated.The UDT transport is no longer maintained and will be removed. -
Uses of ByteBufHolder in io.netty.channel.unix
Classes in io.netty.channel.unix that implement ByteBufHolder Modifier and Type Class Description class
DomainDatagramPacket
The message container that is used forDomainDatagramChannel
to communicate with the remote peer.class
SegmentedDatagramPacket
Allows to use GSO if the underlying OS supports it. -
Uses of ByteBufHolder in io.netty.handler.codec
Classes in io.netty.handler.codec with type parameters of type ByteBufHolder Modifier and Type Class Description class
MessageAggregator<I,S,C extends ByteBufHolder,O extends ByteBufHolder>
An abstractChannelHandler
that aggregates a series of message objects into a single aggregated message.class
MessageAggregator<I,S,C extends ByteBufHolder,O extends ByteBufHolder>
An abstractChannelHandler
that aggregates a series of message objects into a single aggregated message. -
Uses of ByteBufHolder in io.netty.handler.codec.dns
Subinterfaces of ByteBufHolder in io.netty.handler.codec.dns Modifier and Type Interface Description interface
DnsRawRecord
A genericDnsRecord
that contains an undecodedRDATA
.Classes in io.netty.handler.codec.dns that implement ByteBufHolder Modifier and Type Class Description class
DefaultDnsRawRecord
The defaultDnsRawRecord
implementation. -
Uses of ByteBufHolder in io.netty.handler.codec.haproxy
Classes in io.netty.handler.codec.haproxy that implement ByteBufHolder Modifier and Type Class Description class
HAProxySSLTLV
Represents aHAProxyTLV
of the typeHAProxyTLV.Type.PP2_TYPE_SSL
.class
HAProxyTLV
A Type-Length Value (TLV vector) that can be added to the PROXY protocol to include additional information like SSL information. -
Uses of ByteBufHolder in io.netty.handler.codec.http
Subinterfaces of ByteBufHolder in io.netty.handler.codec.http Modifier and Type Interface Description interface
FullHttpMessage
CombinesHttpMessage
andLastHttpContent
into one message.interface
FullHttpRequest
Combine theHttpRequest
andFullHttpMessage
, so the request is a complete HTTP request.interface
FullHttpResponse
Combination of aHttpResponse
andFullHttpMessage
.interface
HttpContent
An HTTP chunk which is used for HTTP chunked transfer-encoding.interface
LastHttpContent
The lastHttpContent
which has trailing headers.Classes in io.netty.handler.codec.http that implement ByteBufHolder Modifier and Type Class Description class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.class
DefaultHttpContent
The defaultHttpContent
implementation.class
DefaultLastHttpContent
The defaultLastHttpContent
implementation. -
Uses of ByteBufHolder in io.netty.handler.codec.http.multipart
Subinterfaces of ByteBufHolder in io.netty.handler.codec.http.multipart Modifier and Type Interface Description interface
Attribute
Attribute interfaceinterface
FileUpload
FileUpload interface that could be in memory, on temporary file or any other implementations.interface
HttpData
Extended interface for InterfaceHttpDataClasses in io.netty.handler.codec.http.multipart that implement ByteBufHolder Modifier and Type Class Description class
AbstractDiskHttpData
Abstract Disk HttpData implementationclass
AbstractHttpData
Abstract HttpData implementationclass
AbstractMemoryHttpData
Abstract Memory HttpData implementationclass
DiskAttribute
Disk implementation of Attributesclass
DiskFileUpload
Disk FileUpload implementation that stores file into real filesclass
MemoryAttribute
Memory implementation of Attributesclass
MemoryFileUpload
Default FileUpload implementation that stores file into memory.
Warning: be aware of the memory limitation.class
MixedAttribute
Mixed implementation using both in Memory and in File with a limit of sizeclass
MixedFileUpload
Mixed implementation using both in Memory and in File with a limit of size -
Uses of ByteBufHolder in io.netty.handler.codec.http.websocketx
Classes in io.netty.handler.codec.http.websocketx that implement ByteBufHolder Modifier and Type Class Description class
BinaryWebSocketFrame
Web Socket frame containing binary data.class
CloseWebSocketFrame
Web Socket Frame for closing the connection.class
ContinuationWebSocketFrame
Web Socket continuation frame containing continuation text or binary data.class
PingWebSocketFrame
Web Socket frame containing binary data.class
PongWebSocketFrame
Web Socket frame containing binary data.class
TextWebSocketFrame
Web Socket text frame.class
WebSocketFrame
Base class for web socket frames. -
Uses of ByteBufHolder in io.netty.handler.codec.http2
Subinterfaces of ByteBufHolder in io.netty.handler.codec.http2 Modifier and Type Interface Description interface
Http2DataFrame
HTTP/2 DATA frame.interface
Http2GoAwayFrame
HTTP/2 GOAWAY frame.interface
Http2UnknownFrame
Classes in io.netty.handler.codec.http2 that implement ByteBufHolder Modifier and Type Class Description class
DefaultHttp2DataFrame
The defaultHttp2DataFrame
implementation.class
DefaultHttp2GoAwayFrame
The defaultHttp2GoAwayFrame
implementation.class
DefaultHttp2UnknownFrame
-
Uses of ByteBufHolder in io.netty.handler.codec.memcache
Subinterfaces of ByteBufHolder in io.netty.handler.codec.memcache Modifier and Type Interface Description interface
FullMemcacheMessage
CombinesMemcacheMessage
andLastMemcacheContent
into one message.interface
LastMemcacheContent
TheMemcacheContent
which signals the end of the content batch.interface
MemcacheContent
An Memcache content chunk.Classes in io.netty.handler.codec.memcache that implement ByteBufHolder Modifier and Type Class Description class
DefaultLastMemcacheContent
The default implementation for theLastMemcacheContent
.class
DefaultMemcacheContent
The defaultMemcacheContent
implementation. -
Uses of ByteBufHolder in io.netty.handler.codec.memcache.binary
Subinterfaces of ByteBufHolder in io.netty.handler.codec.memcache.binary Modifier and Type Interface Description interface
FullBinaryMemcacheRequest
ABinaryMemcacheRequest
that also includes the content.interface
FullBinaryMemcacheResponse
ABinaryMemcacheResponse
that also includes the content.Classes in io.netty.handler.codec.memcache.binary that implement ByteBufHolder Modifier and Type Class Description class
DefaultFullBinaryMemcacheRequest
The default implementation of aFullBinaryMemcacheRequest
.class
DefaultFullBinaryMemcacheResponse
The default implementation of aFullBinaryMemcacheResponse
. -
Uses of ByteBufHolder in io.netty.handler.codec.mqtt
Classes in io.netty.handler.codec.mqtt that implement ByteBufHolder Modifier and Type Class Description class
MqttPublishMessage
See MQTTV3.1/publish -
Uses of ByteBufHolder in io.netty.handler.codec.redis
Subinterfaces of ByteBufHolder in io.netty.handler.codec.redis Modifier and Type Interface Description interface
BulkStringRedisContent
A chunk of bulk strings which is used for Redis chunked transfer-encoding.interface
LastBulkStringRedisContent
A last chunk of Bulk Strings.Classes in io.netty.handler.codec.redis that implement ByteBufHolder Modifier and Type Class Description class
DefaultBulkStringRedisContent
A default implementation ofBulkStringRedisContent
.class
DefaultLastBulkStringRedisContent
A default implementation forLastBulkStringRedisContent
.class
FullBulkStringRedisMessage
An aggregated bulk string of RESP. -
Uses of ByteBufHolder in io.netty.handler.codec.smtp
Subinterfaces of ByteBufHolder in io.netty.handler.codec.smtp Modifier and Type Interface Description interface
LastSmtpContent
The last part of a sequence ofSmtpContent
s that are sent after aDATA
request.interface
SmtpContent
Content that is sent after theDATA
request.Classes in io.netty.handler.codec.smtp that implement ByteBufHolder Modifier and Type Class Description class
DefaultLastSmtpContent
Default implementation ofLastSmtpContent
that does no validation of the raw data passed in.class
DefaultSmtpContent
Default implementation ofSmtpContent
that does no validation of the raw data passed in. -
Uses of ByteBufHolder in io.netty.handler.codec.spdy
Subinterfaces of ByteBufHolder in io.netty.handler.codec.spdy Modifier and Type Interface Description interface
SpdyDataFrame
A SPDY Protocol DATA Frameinterface
SpdyUnknownFrame
A SPDY Control frame.Classes in io.netty.handler.codec.spdy that implement ByteBufHolder Modifier and Type Class Description class
DefaultSpdyDataFrame
The defaultSpdyDataFrame
implementation.class
DefaultSpdyUnknownFrame
-
Uses of ByteBufHolder in io.netty.handler.codec.stomp
Subinterfaces of ByteBufHolder in io.netty.handler.codec.stomp Modifier and Type Interface Description interface
LastStompContentSubframe
The lastStompContentSubframe
which signals the end of the content batchinterface
StompContentSubframe
An STOMP chunk which is used for STOMP chunked transfer-encoding.interface
StompFrame
CombinesStompHeadersSubframe
andLastStompContentSubframe
into one frame.Classes in io.netty.handler.codec.stomp that implement ByteBufHolder Modifier and Type Class Description class
DefaultLastStompContentSubframe
The default implementation for theLastStompContentSubframe
.class
DefaultStompContentSubframe
The defaultStompContentSubframe
implementation.class
DefaultStompFrame
Default implementation ofStompFrame
. -
Uses of ByteBufHolder in io.netty.handler.ssl
Classes in io.netty.handler.ssl that implement ByteBufHolder Modifier and Type Class Description class
PemPrivateKey
This is a special purpose implementation of aPrivateKey
which allows the user to pass PEM/PKCS#8 encoded key material straight intoOpenSslContext
without having to parse and re-encode bytes in Java land.class
PemX509Certificate
This is a special purpose implementation of aX509Certificate
which allows the user to pass PEM/PKCS#8 encoded data straight intoOpenSslContext
without having to parse and re-encode bytes in Java land.
-