pollCeilingEntry() — netty Function Reference
Architecture documentation for the pollCeilingEntry() function in ConcurrentSkipListIntObjMultimapTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2fbf912a_1463_9110_14ed_d1e0925105f4["pollCeilingEntry()"] b8d62292_25db_2195_8bbe_2ebd67dc18b5["ConcurrentSkipListIntObjMultimapTest"] 2fbf912a_1463_9110_14ed_d1e0925105f4 -->|defined in| b8d62292_25db_2195_8bbe_2ebd67dc18b5 style 2fbf912a_1463_9110_14ed_d1e0925105f4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java lines 425–441
@Test
void pollCeilingEntry() throws Exception {
map.put(1, "a");
map.put(2, "b");
map.put(2, "b");
map.put(3, "c");
map.put(4, "d");
map.put(4, "d");
assertEquals(new IntEntry<>(2, "b"), map.pollCeilingEntry(2));
assertEquals(new IntEntry<>(2, "b"), map.pollCeilingEntry(2));
assertEquals(new IntEntry<>(3, "c"), map.pollCeilingEntry(2));
assertEquals(new IntEntry<>(4, "d"), map.pollCeilingEntry(2));
assertEquals(new IntEntry<>(4, "d"), map.pollCeilingEntry(2));
assertNull(map.pollCeilingEntry(2));
assertFalse(map.isEmpty());
assertEquals(1, map.size());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does pollCeilingEntry() do?
pollCeilingEntry() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java.
Where is pollCeilingEntry() defined?
pollCeilingEntry() is defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java at line 425.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free