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 |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
io.netty.handler.codec.dns |
DNS codec.
|
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.stomp |
STOMP codec
|
io.netty.handler.ssl | |
io.netty.util |
Utility classes used across multiple packages.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ByteBufHolder
A packet which is send or receive.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractByteBuf
A skeletal implementation of a buffer.
|
class |
AbstractDerivedByteBuf
Deprecated.
Do not use.
|
class |
AbstractReferenceCountedByteBuf
Abstract base class for
ByteBuf implementations that count references. |
class |
ByteBuf
A random and sequential accessible sequence of zero or more bytes (octets).
|
class |
CompositeByteBuf
A virtual buffer which shows multiple buffers as a single merged buffer.
|
class |
DefaultByteBufHolder
Default implementation of a
ByteBufHolder that holds it's data in a ByteBuf . |
class |
DuplicatedByteBuf
Deprecated.
Do not use.
|
class |
EmptyByteBuf
An empty
ByteBuf whose capacity and maximum capacity are all 0 . |
class |
ReadOnlyByteBuf
Deprecated.
Do not use.
|
class |
SlicedByteBuf
Deprecated.
Do not use.
|
class |
SwappedByteBuf
Deprecated.
use the Little Endian accessors, e.g.
getShortLE , getIntLE
instead. |
class |
UnpooledDirectByteBuf
A NIO
ByteBuffer based buffer. |
class |
UnpooledHeapByteBuf
Big endian Java heap buffer implementation.
|
class |
UnpooledUnsafeDirectByteBuf
A NIO
ByteBuffer based buffer. |
Modifier and Type | Interface and Description |
---|---|
interface |
AddressedEnvelope<M,A extends SocketAddress>
A message that wraps another message with a sender address and a recipient address.
|
interface |
FileRegion
A region of a file that is sent via a
Channel which supports
zero-copy file transfer. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultAddressedEnvelope<M,A extends SocketAddress>
The default
AddressedEnvelope implementation. |
class |
DefaultFileRegion
|
Modifier and Type | Method and Description |
---|---|
protected ByteBuf |
AbstractNioChannel.newDirectBuffer(ReferenceCounted holder,
ByteBuf buf)
Returns an off-heap copy of the specified
ByteBuf , and releases the specified holder. |
Modifier and Type | Class and Description |
---|---|
class |
DatagramPacket
The message container that is used for
DatagramChannel to communicate with the remote peer. |
Modifier and Type | Interface and Description |
---|---|
interface |
DnsMessage
The superclass which contains core information concerning a
DnsQuery and a DnsResponse . |
interface |
DnsQuery
A DNS query message.
|
interface |
DnsRawRecord
A generic
DnsRecord that contains an undecoded RDATA . |
interface |
DnsResponse
A DNS response message.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDnsMessage
A skeletal implementation of
DnsMessage . |
class |
DatagramDnsQuery
A
DnsQuery implementation for UDP/IP. |
class |
DatagramDnsResponse
A
DnsResponse implementation for UDP/IP. |
class |
DefaultDnsQuery
The default
DnsQuery implementation. |
class |
DefaultDnsRawRecord
The default
DnsRawRecord implementation. |
class |
DefaultDnsResponse
The default
DnsResponse implementation. |
Modifier and Type | Interface and Description |
---|---|
interface |
FullMemcacheMessage
Combines
MemcacheMessage and LastMemcacheContent into one
message. |
interface |
LastMemcacheContent
The
MemcacheContent which signals the end of the content batch. |
interface |
MemcacheContent
An Memcache content chunk.
|
interface |
MemcacheMessage
Marker interface for both ascii and binary messages.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMemcacheObject
The default
MemcacheObject implementation. |
class |
DefaultLastMemcacheContent
The default implementation for the
LastMemcacheContent . |
class |
DefaultMemcacheContent
The default
MemcacheContent implementation. |
Modifier and Type | Interface and Description |
---|---|
interface |
BinaryMemcacheMessage
An interface that defines a binary Memcache message, providing common properties for
BinaryMemcacheRequest and BinaryMemcacheResponse . |
interface |
BinaryMemcacheRequest
Represents a full
BinaryMemcacheRequest , which contains the header and optional key and extras. |
interface |
BinaryMemcacheResponse
Represents a full
BinaryMemcacheResponse , which contains the header and optional key and extras. |
interface |
FullBinaryMemcacheRequest
A
BinaryMemcacheRequest that also includes the content. |
interface |
FullBinaryMemcacheResponse
A
BinaryMemcacheResponse that also includes the content. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBinaryMemcacheMessage
Default implementation of a
BinaryMemcacheMessage . |
class |
DefaultBinaryMemcacheRequest
The default implementation of the
BinaryMemcacheRequest . |
class |
DefaultBinaryMemcacheResponse
The default implementation of the
BinaryMemcacheResponse . |
class |
DefaultFullBinaryMemcacheRequest
The default implementation of a
FullBinaryMemcacheRequest . |
class |
DefaultFullBinaryMemcacheResponse
The default implementation of a
FullBinaryMemcacheResponse . |
Modifier and Type | Class and Description |
---|---|
class |
MqttPublishMessage
See MQTTV3.1/publish
|
Modifier and Type | Interface and Description |
---|---|
interface |
BulkStringRedisContent
A chunk of bulk strings which is used for Redis chunked transfer-encoding.
|
interface |
LastBulkStringRedisContent
A last chunk of Bulk Strings.
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayRedisMessage
Arrays of RESP.
|
class |
DefaultBulkStringRedisContent
A default implementation of
BulkStringRedisContent . |
class |
DefaultLastBulkStringRedisContent
A default implementation for
LastBulkStringRedisContent . |
class |
FullBulkStringRedisMessage
An aggregated bulk string of RESP.
|
Modifier and Type | Interface and Description |
---|---|
interface |
LastSmtpContent
The last part of a sequence of
SmtpContent s that are sent after a DATA request. |
interface |
SmtpContent
Content that is sent after the
DATA request. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultLastSmtpContent
Default implementation of
LastSmtpContent that does no validation of the raw data passed in. |
class |
DefaultSmtpContent
Default implementation of
SmtpContent that does no validation of the raw data passed in. |
Modifier and Type | Interface and Description |
---|---|
interface |
LastStompContentSubframe
The last
StompContentSubframe which signals the end of the content batch
Note, even when no content is emitted by the protocol, an
empty LastStompContentSubframe is issued to make the upstream parsing
easier. |
interface |
StompContentSubframe
An STOMP chunk which is used for STOMP chunked transfer-encoding.
|
interface |
StompFrame
Combines
StompHeadersSubframe and LastStompContentSubframe into one
frame. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultLastStompContentSubframe
The default implementation for the
LastStompContentSubframe . |
class |
DefaultStompContentSubframe
The default
StompContentSubframe implementation. |
class |
DefaultStompFrame
Default implementation of
StompFrame . |
Modifier and Type | Class and Description |
---|---|
class |
PemPrivateKey
This is a special purpose implementation of a
PrivateKey which allows the
user to pass PEM/PKCS#8 encoded key material straight into OpenSslContext
without having to parse and re-encode bytes in Java land. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractReferenceCounted
Abstract base class for classes wants to implement
ReferenceCounted . |
Modifier and Type | Method and Description |
---|---|
ReferenceCounted |
ReferenceCounted.retain()
Increases the reference count by
1 . |
ReferenceCounted |
AbstractReferenceCounted.retain() |
ReferenceCounted |
ReferenceCounted.retain(int increment)
Increases the reference count by the specified
increment . |
ReferenceCounted |
AbstractReferenceCounted.retain(int increment) |
ReferenceCounted |
ReferenceCounted.touch()
Records the current access location of this object for debugging purposes.
|
ReferenceCounted |
AbstractReferenceCounted.touch() |
ReferenceCounted |
ReferenceCounted.touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
Copyright © 2008-2017 The Netty Project. All Rights Reserved.