| Package | Description |
|---|---|
| io.netty.util.concurrent |
Utility classes for concurrent / async tasks.
|
| Modifier and Type | Method and Description |
|---|---|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.ceilingEntry(int key)
Returns a key-value mapping associated with the least key
greater than or equal to the given key, or
null if
there is no such entry. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.firstEntry()
Returns a key-value mapping associated with the least
key in this map, or
null if the map is empty. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.floorEntry(int key)
Returns a key-value mapping associated with the greatest key
less than or equal to the given key, or
null if there
is no such key. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.higherEntry(int key)
Returns a key-value mapping associated with the least key
strictly greater than the given key, or
null if there
is no such key. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.lastEntry()
Returns a key-value mapping associated with the greatest
key in this map, or
null if the map is empty. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.lowerEntry(int key)
Returns a key-value mapping associated with the greatest key
strictly less than the given key, or
null if there is
no such key. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollCeilingEntry(int key) |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollFirstEntry()
Removes and returns a key-value mapping associated with
the least key in this map, or
null if the map is empty. |
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollLastEntry()
Removes and returns a key-value mapping associated with
the greatest key in this map, or
null if the map is empty. |
| Modifier and Type | Method and Description |
|---|---|
Iterator<ConcurrentSkipListIntObjMultimap.IntEntry<V>> |
ConcurrentSkipListIntObjMultimap.iterator() |
| Modifier and Type | Method and Description |
|---|---|
int |
ConcurrentSkipListIntObjMultimap.IntEntry.compareTo(ConcurrentSkipListIntObjMultimap.IntEntry<V> o) |
Copyright © 2008–2026 The Netty Project. All rights reserved.