Uses of Interface
io.netty.util.collection.IntObjectMap
-
Packages that use IntObjectMap Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.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.channel.epoll
Fields in io.netty.channel.epoll declared as IntObjectMap Modifier and Type Field Description private IntObjectMap<AbstractEpollChannel>
EpollEventLoop. channels
-
Uses of IntObjectMap in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as IntObjectMap Modifier and Type Field Description private IntObjectMap<AbstractKQueueChannel>
KQueueEventLoop. channels
-
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 declared as IntObjectMap Modifier and Type Field Description private IntObjectMap<DnsQueryContext>
DnsQueryContextManager.DnsQueryContextMap. map
-
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)
-