Uses of Interface
io.netty5.channel.AddressedEnvelope
-
Packages that use AddressedEnvelope Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty5.channel.unix Unix specific transport.io.netty5.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.netty5.handler.codec.dns DNS codec.io.netty5.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.netty5.channel
Classes in io.netty5.channel that implement AddressedEnvelope Modifier and Type Class Description class
BufferAddressedEnvelope<A extends SocketAddress,T extends BufferAddressedEnvelope<A,T>>
Base class for addressed envelopes that haveBuffer
instances as messages.class
DefaultAddressedEnvelope<M,A extends SocketAddress>
The defaultAddressedEnvelope
implementation.class
DefaultBufferAddressedEnvelope<A extends SocketAddress>
The defaultAddressedEnvelope
implementation forBuffer
messages. -
Uses of AddressedEnvelope in io.netty5.channel.socket
Classes in io.netty5.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.netty5.channel.unix
Classes in io.netty5.channel.unix that implement AddressedEnvelope Modifier and Type Class Description class
SegmentedDatagramPacket
Allows to use GSO if the underlying OS supports it. -
Uses of AddressedEnvelope in io.netty5.handler.codec
Methods in io.netty5.handler.codec with parameters of type AddressedEnvelope Modifier and Type Method Description protected void
DatagramPacketEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<M,InetSocketAddress> msg, List<Object> out)
-
Uses of AddressedEnvelope in io.netty5.handler.codec.dns
Classes in io.netty5.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.netty5.handler.codec.dns with parameters of type AddressedEnvelope Modifier and Type Method Description protected Buffer
DatagramDnsQueryEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery,InetSocketAddress> msg)
Allocate aBuffer
which will be used for constructing a datagram packet.protected Buffer
DatagramDnsResponseEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse,InetSocketAddress> msg)
Allocate aBuffer
which will be used for constructing a datagram packet.protected void
DatagramDnsQueryEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery,InetSocketAddress> in, List<Object> out)
protected void
DatagramDnsResponseEncoder. encode(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse,InetSocketAddress> in, List<Object> out)
-
Uses of AddressedEnvelope in io.netty5.resolver.dns
Methods in io.netty5.resolver.dns that return types with arguments of type AddressedEnvelope Modifier and Type Method Description Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,InetSocketAddress>> promise)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, Iterable<DnsRecord> additionals)
Sends a DNS query with the specified question with additional records.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
DnsNameResolver. query(InetSocketAddress nameServerAddr, DnsQuestion question)
Sends a DNS query with the specified question using the specified name server list.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
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.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
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.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
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.netty5.resolver.dns with type arguments of type AddressedEnvelope Modifier and Type Method Description Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
DnsNameResolver. query(DnsQuestion question, Promise<AddressedEnvelope<? extends DnsResponse,InetSocketAddress>> promise)
Sends a DNS query with the specified question.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
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.Future<AddressedEnvelope<DnsResponse,InetSocketAddress>>
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.
-