Uses of Interface
io.netty.channel.AddressedEnvelope
Packages that use AddressedEnvelope
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
Abstract TCP and UDP socket interfaces which extend the core channel API.
Unix specific transport.
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.
DNS codec.
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 AddressedEnvelopeModifier and TypeClassDescriptionclassDefaultAddressedEnvelope<M, A extends SocketAddress>The defaultAddressedEnvelopeimplementation.Methods in io.netty.channel that return AddressedEnvelope -
Uses of AddressedEnvelope in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement AddressedEnvelope -
Uses of AddressedEnvelope in io.netty.channel.socket
Classes in io.netty.channel.socket that implement AddressedEnvelopeModifier and TypeClassDescriptionclassThe message container that is used forDatagramChannelto communicate with the remote peer. -
Uses of AddressedEnvelope in io.netty.channel.unix
Classes in io.netty.channel.unix that implement AddressedEnvelopeModifier and TypeClassDescriptionfinal classThe message container that is used forDomainDatagramChannelto communicate with the remote peer.classAllows to use GSO if the underlying OS supports it. -
Uses of AddressedEnvelope in io.netty.handler.codec
Subclasses with type arguments of type AddressedEnvelope in io.netty.handler.codecModifier and TypeClassDescriptionclassAn encoder that encodes the content inAddressedEnvelopetoDatagramPacketusing the specified message encoder.Methods in io.netty.handler.codec with parameters of type AddressedEnvelopeModifier and TypeMethodDescriptionprotected voidDatagramPacketEncoder.encode(ChannelHandlerContext ctx, AddressedEnvelope<M, InetSocketAddress> msg, List<Object> out) -
Uses of AddressedEnvelope in io.netty.handler.codec.dns
Classes in io.netty.handler.codec.dns that implement AddressedEnvelopeModifier and TypeClassDescriptionclassADnsQueryimplementation for UDP/IP.classADnsResponseimplementation for UDP/IP.Subclasses with type arguments of type AddressedEnvelope in io.netty.handler.codec.dnsModifier and TypeClassDescriptionclassclassMethods in io.netty.handler.codec.dns with parameters of type AddressedEnvelopeModifier and TypeMethodDescriptionprotected ByteBufDatagramDnsQueryEncoder.allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery, InetSocketAddress> msg) Allocate aByteBufwhich will be used for constructing a datagram packet.protected ByteBufDatagramDnsResponseEncoder.allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse, InetSocketAddress> msg) Allocate aByteBufwhich will be used for constructing a datagram packet.protected voidDatagramDnsQueryEncoder.encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery, InetSocketAddress> in, List<Object> out) protected voidDatagramDnsResponseEncoder.encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse, InetSocketAddress> in, List<Object> out) -
Uses of AddressedEnvelope in io.netty.resolver.dns
Methods in io.netty.resolver.dns that return types with arguments of type AddressedEnvelopeModifier and TypeMethodDescriptionDnsNameResolver.query(DnsQuestion question) Sends a DNS query with the specified question.DnsNameResolver.query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse, InetSocketAddress>> promise) Sends a DNS query with the specified question.DnsNameResolver.query(DnsQuestion question, Iterable<DnsRecord> additionals) Sends a DNS query with the specified question with additional records.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question) Sends a DNS query with the specified question using the specified name server list.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse, InetSocketAddress>> promise) Sends a DNS query with the specified question using the specified name server list.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question, Iterable<DnsRecord> additionals) Sends a DNS query with the specified question with additional records using the specified name server list.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question, Iterable<DnsRecord> additionals, Promise<AddressedEnvelope<? extends DnsResponse, 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 AddressedEnvelopeModifier and TypeMethodDescriptionDnsNameResolver.query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse, InetSocketAddress>> promise) Sends a DNS query with the specified question.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse, InetSocketAddress>> promise) Sends a DNS query with the specified question using the specified name server list.DnsNameResolver.query(InetSocketAddress nameServerAddr, DnsQuestion question, Iterable<DnsRecord> additionals, Promise<AddressedEnvelope<? extends DnsResponse, InetSocketAddress>> promise) Sends a DNS query with the specified question with additional records using the specified name server list.
SegmentedDatagramPacket.