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.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.sctp Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.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.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. childrenprivate IntObjectMap<Http2FrameCodec.DefaultHttp2FrameStream>Http2FrameCodec. frameStreamToInitializeMapprivate IntObjectMap<WeightedFairQueueByteDistributor.State>WeightedFairQueueByteDistributor. stateOnlyMapIf there is no Http2Stream object, but we still persist priority information then this is where the state will reside.(package private) IntObjectMap<Http2Stream>DefaultHttp2Connection. streamMapMethods 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.handler.codec.sctp
Fields in io.netty.handler.codec.sctp declared as IntObjectMap Modifier and Type Field Description private IntObjectMap<ByteBuf>SctpMessageCompletionHandler. fragments -
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 classIntCollections.EmptyMapAn empty map.private static classIntCollections.UnmodifiableMap<V>An unmodifiable wrapper around aIntObjectMap.classIntObjectHashMap<V>A hash map implementation ofIntObjectMapthat 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_MAPprivate IntObjectMap<V>IntCollections.UnmodifiableMap. mapMethods 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)
-