Uses of Interface
io.netty.util.collection.LongObjectMap
-
Packages that use LongObjectMap Package Description io.netty.channel.kqueue BSD specific transport.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.util.collection -
-
Uses of LongObjectMap in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as LongObjectMap Modifier and Type Field Description private LongObjectMap<KQueueEventLoop.KQueueRegistration>
KQueueEventLoop. registrations
-
Uses of LongObjectMap in io.netty.handler.codec.redis
Fields in io.netty.handler.codec.redis declared as LongObjectMap Modifier and Type Field Description private LongObjectMap<byte[]>
FixedRedisMessagePool. longToByteBufs
private LongObjectMap<IntegerRedisMessage>
FixedRedisMessagePool. longToIntegers
-
Uses of LongObjectMap in io.netty.util.collection
Classes in io.netty.util.collection that implement LongObjectMap Modifier and Type Class Description private static class
LongCollections.EmptyMap
An empty map.private static class
LongCollections.UnmodifiableMap<V>
An unmodifiable wrapper around aLongObjectMap
.class
LongObjectHashMap<V>
A hash map implementation ofLongObjectMap
that uses open addressing for keys.Fields in io.netty.util.collection declared as LongObjectMap Modifier and Type Field Description private static LongObjectMap<java.lang.Object>
LongCollections. EMPTY_MAP
private LongObjectMap<V>
LongCollections.UnmodifiableMap. map
Methods in io.netty.util.collection that return LongObjectMap Modifier and Type Method Description static <V> LongObjectMap<V>
LongCollections. emptyMap()
Returns an unmodifiable emptyLongObjectMap
.static <V> LongObjectMap<V>
LongCollections. unmodifiableMap(LongObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Methods in io.netty.util.collection with parameters of type LongObjectMap Modifier and Type Method Description static <V> LongObjectMap<V>
LongCollections. unmodifiableMap(LongObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Constructors in io.netty.util.collection with parameters of type LongObjectMap Constructor Description UnmodifiableMap(LongObjectMap<V> map)
-