Uses of Interface
io.netty.channel.AddressedEnvelope
-
Packages that use AddressedEnvelope Package Description 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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.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.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well. -
-
Uses of AddressedEnvelope in io.netty.channel
Classes in io.netty.channel that implement AddressedEnvelope Modifier and Type Class Description class
DefaultAddressedEnvelope<M,A extends java.net.SocketAddress>
The defaultAddressedEnvelope
implementation.Methods in io.netty.channel that return AddressedEnvelope Modifier and Type Method Description AddressedEnvelope<M,A>
AddressedEnvelope. retain()
AddressedEnvelope<M,A>
AddressedEnvelope. retain(int increment)
AddressedEnvelope<M,A>
DefaultAddressedEnvelope. retain()
AddressedEnvelope<M,A>
DefaultAddressedEnvelope. retain(int increment)
AddressedEnvelope<M,A>
AddressedEnvelope. touch()
AddressedEnvelope<M,A>
AddressedEnvelope. touch(java.lang.Object hint)
AddressedEnvelope<M,A>
DefaultAddressedEnvelope. touch()
AddressedEnvelope<M,A>
DefaultAddressedEnvelope. touch(java.lang.Object hint)
-
Uses of AddressedEnvelope in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement AddressedEnvelope Modifier and Type Class Description class
SegmentedDatagramPacket
Deprecated. -
Uses of AddressedEnvelope in io.netty.channel.socket
Classes in io.netty.channel.socket that implement AddressedEnvelope Modifier and Type Class Description class
DatagramPacket
The message container that is used forDatagramChannel
to communicate with the remote peer. -
Uses of AddressedEnvelope in io.netty.channel.unix
Classes in io.netty.channel.unix that implement AddressedEnvelope 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 AddressedEnvelope in io.netty.handler.codec
Methods in io.netty.handler.codec with parameters of type AddressedEnvelope Modifier and Type Method Description protected void
DatagramPacketEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<M,java.net.InetSocketAddress> msg, java.util.List<java.lang.Object> out)
-
Uses of AddressedEnvelope in io.netty.handler.codec.dns
Classes in io.netty.handler.codec.dns that implement AddressedEnvelope Modifier and Type Class Description class
DatagramDnsQuery
ADnsQuery
implementation for UDP/IP.class
DatagramDnsResponse
ADnsResponse
implementation for UDP/IP.Methods in io.netty.handler.codec.dns with parameters of type AddressedEnvelope Modifier and Type Method Description protected ByteBuf
DatagramDnsQueryEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery,java.net.InetSocketAddress> msg)
Allocate aByteBuf
which will be used for constructing a datagram packet.protected ByteBuf
DatagramDnsResponseEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse,java.net.InetSocketAddress> msg)
Allocate aByteBuf
which will be used for constructing a datagram packet.protected void
DatagramDnsQueryEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery,java.net.InetSocketAddress> in, java.util.List<java.lang.Object> out)
protected void
DatagramDnsResponseEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse,java.net.InetSocketAddress> in, java.util.List<java.lang.Object> out)
-
Uses of AddressedEnvelope in io.netty.resolver.dns
Methods in io.netty.resolver.dns that return types with arguments of type AddressedEnvelope Modifier and Type Method Description Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, java.lang.Iterable<DnsRecord> additionals)
Sends a DNS query with the specified question with additional records.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question)
Sends a DNS query with the specified question using the specified name server list.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question using the specified name server list.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question, java.lang.Iterable<DnsRecord> additionals)
Sends a DNS query with the specified question with additional records using the specified name server list.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question, java.lang.Iterable<DnsRecord> additionals, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question with additional records using the specified name server list.Method parameters in io.netty.resolver.dns with type arguments of type AddressedEnvelope Modifier and Type Method Description Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question using the specified name server list.Future<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>>
DnsNameResolver. query(java.net.InetSocketAddress nameServerAddr, DnsQuestion question, java.lang.Iterable<DnsRecord> additionals, Promise<AddressedEnvelope<? extends DnsResponse,java.net.InetSocketAddress>> promise)
Sends a DNS query with the specified question with additional records using the specified name server list.
-