testWriterNotIdle() — netty Function Reference
Architecture documentation for the testWriterNotIdle() function in IdleStateHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 97a9191f_5aad_e60e_0845_ef3d3d3b16ba["testWriterNotIdle()"] f1a156c3_6366_afc7_6b64_9543e5f91ba9["IdleStateHandlerTest"] 97a9191f_5aad_e60e_0845_ef3d3d3b16ba -->|defined in| f1a156c3_6366_afc7_6b64_9543e5f91ba9 1cc6fb30_92ac_540a_93b5_d0513d5059f6["anyNotIdle()"] 97a9191f_5aad_e60e_0845_ef3d3d3b16ba -->|calls| 1cc6fb30_92ac_540a_93b5_d0513d5059f6 style 97a9191f_5aad_e60e_0845_ef3d3d3b16ba fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java lines 146–159
@Test
public void testWriterNotIdle() throws Exception {
IdleStateHandler idleStateHandler = new IdleStateHandler(
false, 0L, 1L, 0L, TimeUnit.SECONDS);
Action action = new Action() {
@Override
public void run(EmbeddedChannel channel) throws Exception {
channel.writeAndFlush("Hello, World!");
}
};
anyNotIdle(idleStateHandler, action, IdleStateEvent.FIRST_WRITER_IDLE_STATE_EVENT);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testWriterNotIdle() do?
testWriterNotIdle() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java.
Where is testWriterNotIdle() defined?
testWriterNotIdle() is defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java at line 146.
What does testWriterNotIdle() call?
testWriterNotIdle() calls 1 function(s): anyNotIdle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free