testHashedWheelTimerStartStop() — netty Function Reference
Architecture documentation for the testHashedWheelTimerStartStop() function in NettyBlockHoundIntegrationTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 230a896a_54b1_fde8_a9be_4f847699ddec["testHashedWheelTimerStartStop()"] 746a8721_66e8_40dd_5dc1_a4c697fa84e4["NettyBlockHoundIntegrationTest"] 230a896a_54b1_fde8_a9be_4f847699ddec -->|defined in| 746a8721_66e8_40dd_5dc1_a4c697fa84e4 style 230a896a_54b1_fde8_a9be_4f847699ddec fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java lines 207–215
@Test
@Timeout(value = 5000, unit = TimeUnit.MILLISECONDS)
public void testHashedWheelTimerStartStop() throws Exception {
HashedWheelTimer timer = new HashedWheelTimer();
Future<?> futureStart = GlobalEventExecutor.INSTANCE.submit(timer::start);
futureStart.get(5, TimeUnit.SECONDS);
Future<?> futureStop = GlobalEventExecutor.INSTANCE.submit(timer::stop);
futureStop.get(5, TimeUnit.SECONDS);
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does testHashedWheelTimerStartStop() do?
testHashedWheelTimerStartStop() is a function in the netty codebase, defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java.
Where is testHashedWheelTimerStartStop() defined?
testHashedWheelTimerStartStop() is defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java at line 207.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free