testEventExecutorTakeTask() — netty Function Reference
Architecture documentation for the testEventExecutorTakeTask() function in NettyBlockHoundIntegrationTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7dd063a6_8906_ff62_bbb8_8e5a2eafbf52["testEventExecutorTakeTask()"] 746a8721_66e8_40dd_5dc1_a4c697fa84e4["NettyBlockHoundIntegrationTest"] 7dd063a6_8906_ff62_bbb8_8e5a2eafbf52 -->|defined in| 746a8721_66e8_40dd_5dc1_a4c697fa84e4 792f49d1_d055_21f0_8358_2d3033d72778["testGlobalEventExecutorTakeTask()"] 792f49d1_d055_21f0_8358_2d3033d72778 -->|calls| 7dd063a6_8906_ff62_bbb8_8e5a2eafbf52 5f0bf64b_8897_5f95_70c7_c118591aab8b["testSingleThreadEventExecutorTakeTask()"] 5f0bf64b_8897_5f95_70c7_c118591aab8b -->|calls| 7dd063a6_8906_ff62_bbb8_8e5a2eafbf52 style 7dd063a6_8906_ff62_bbb8_8e5a2eafbf52 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java lines 151–156
private static void testEventExecutorTakeTask(EventExecutor eventExecutor) throws InterruptedException {
CountDownLatch latch = new CountDownLatch(1);
ScheduledFuture<?> f = eventExecutor.schedule(latch::countDown, 10, TimeUnit.MILLISECONDS);
f.sync();
latch.await();
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does testEventExecutorTakeTask() do?
testEventExecutorTakeTask() is a function in the netty codebase, defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java.
Where is testEventExecutorTakeTask() defined?
testEventExecutorTakeTask() is defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java at line 151.
What calls testEventExecutorTakeTask()?
testEventExecutorTakeTask() is called by 2 function(s): testGlobalEventExecutorTakeTask, testSingleThreadEventExecutorTakeTask.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free