Home / Function/ testReaderNotIdle() — netty Function Reference

testReaderNotIdle() — netty Function Reference

Architecture documentation for the testReaderNotIdle() function in IdleStateHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5bb1f696_1ee0_b304_b852_579f3a91a5ba["testReaderNotIdle()"]
  f1a156c3_6366_afc7_6b64_9543e5f91ba9["IdleStateHandlerTest"]
  5bb1f696_1ee0_b304_b852_579f3a91a5ba -->|defined in| f1a156c3_6366_afc7_6b64_9543e5f91ba9
  1cc6fb30_92ac_540a_93b5_d0513d5059f6["anyNotIdle()"]
  5bb1f696_1ee0_b304_b852_579f3a91a5ba -->|calls| 1cc6fb30_92ac_540a_93b5_d0513d5059f6
  style 5bb1f696_1ee0_b304_b852_579f3a91a5ba fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java lines 131–144

    @Test
    public void testReaderNotIdle() throws Exception {
        IdleStateHandler idleStateHandler = new IdleStateHandler(
                false, 1L, 0L, 0L, TimeUnit.SECONDS);

        Action action = new Action() {
            @Override
            public void run(EmbeddedChannel channel) throws Exception {
                channel.writeInbound("Hello, World!");
            }
        };

        anyNotIdle(idleStateHandler, action, IdleStateEvent.FIRST_READER_IDLE_STATE_EVENT);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testReaderNotIdle() do?
testReaderNotIdle() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java.
Where is testReaderNotIdle() defined?
testReaderNotIdle() is defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java at line 131.
What does testReaderNotIdle() call?
testReaderNotIdle() 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