Home / Function/ testReaderIdle() — netty Function Reference

testReaderIdle() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  ceebc117_e04c_1d25_7956_ad5233e6fcc2["testReaderIdle()"]
  f1a156c3_6366_afc7_6b64_9543e5f91ba9["IdleStateHandlerTest"]
  ceebc117_e04c_1d25_7956_ad5233e6fcc2 -->|defined in| f1a156c3_6366_afc7_6b64_9543e5f91ba9
  13551606_9cf0_6ceb_85f9_d637333fc038["anyIdle()"]
  ceebc117_e04c_1d25_7956_ad5233e6fcc2 -->|calls| 13551606_9cf0_6ceb_85f9_d637333fc038
  style ceebc117_e04c_1d25_7956_ad5233e6fcc2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java lines 39–47

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

        // We start with one FIRST_READER_IDLE_STATE_EVENT, followed by an infinite number of READER_IDLE_STATE_EVENTs
        anyIdle(idleStateHandler, IdleStateEvent.FIRST_READER_IDLE_STATE_EVENT,
                IdleStateEvent.READER_IDLE_STATE_EVENT, IdleStateEvent.READER_IDLE_STATE_EVENT);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testReaderIdle() do?
testReaderIdle() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java.
Where is testReaderIdle() defined?
testReaderIdle() is defined in handler/src/test/java/io/netty/handler/timeout/IdleStateHandlerTest.java at line 39.
What does testReaderIdle() call?
testReaderIdle() calls 1 function(s): anyIdle.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free