Uses of Interface
io.netty.util.collection.IntObjectMap
-
Packages that use IntObjectMap Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.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.io.netty.util.collection -
-
Uses of IntObjectMap in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as IntObjectMap Modifier and Type Field Description (package private) IntObjectMap<WeightedFairQueueByteDistributor.State>
WeightedFairQueueByteDistributor.State. children
private IntObjectMap<Http2FrameCodec.DefaultHttp2FrameStream>
Http2FrameCodec. frameStreamToInitializeMap
private IntObjectMap<WeightedFairQueueByteDistributor.State>
WeightedFairQueueByteDistributor. stateOnlyMap
If there is no Http2Stream object, but we still persist priority information then this is where the state will reside.(package private) IntObjectMap<Http2Stream>
DefaultHttp2Connection. streamMap
Methods in io.netty.handler.codec.http2 that return IntObjectMap Modifier and Type Method Description private IntObjectMap<WeightedFairQueueByteDistributor.State>
WeightedFairQueueByteDistributor.State. removeAllChildrenExcept(WeightedFairQueueByteDistributor.State stateToRetain)
Remove all children with the exception ofstreamToRetain
. -
Uses of IntObjectMap in io.netty.resolver.dns
Fields in io.netty.resolver.dns with type parameters of type IntObjectMap Modifier and Type Field Description (package private) java.util.Map<java.net.InetSocketAddress,IntObjectMap<DnsQueryContext>>
DnsQueryContextManager. map
A map whose key is the DNS server address and value is the map of the DNS query ID and its correspondingDnsQueryContext
.Methods in io.netty.resolver.dns that return IntObjectMap Modifier and Type Method Description private IntObjectMap<DnsQueryContext>
DnsQueryContextManager. getContextMap(java.net.InetSocketAddress nameServerAddr)
private IntObjectMap<DnsQueryContext>
DnsQueryContextManager. getOrCreateContextMap(java.net.InetSocketAddress nameServerAddr)
-
Uses of IntObjectMap in io.netty.util.collection
Classes in io.netty.util.collection that implement IntObjectMap Modifier and Type Class Description private static class
IntCollections.EmptyMap
An empty map.private static class
IntCollections.UnmodifiableMap<V>
An unmodifiable wrapper around aIntObjectMap
.class
IntObjectHashMap<V>
A hash map implementation ofIntObjectMap
that uses open addressing for keys.Fields in io.netty.util.collection declared as IntObjectMap Modifier and Type Field Description private static IntObjectMap<java.lang.Object>
IntCollections. EMPTY_MAP
private IntObjectMap<V>
IntCollections.UnmodifiableMap. map
Methods in io.netty.util.collection that return IntObjectMap Modifier and Type Method Description static <V> IntObjectMap<V>
IntCollections. emptyMap()
Returns an unmodifiable emptyIntObjectMap
.static <V> IntObjectMap<V>
IntCollections. unmodifiableMap(IntObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Methods in io.netty.util.collection with parameters of type IntObjectMap Modifier and Type Method Description static <V> IntObjectMap<V>
IntCollections. unmodifiableMap(IntObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Constructors in io.netty.util.collection with parameters of type IntObjectMap Constructor Description UnmodifiableMap(IntObjectMap<V> map)
-