Home / Function/ assertInboundOperations() — netty Function Reference

assertInboundOperations() — netty Function Reference

Architecture documentation for the assertInboundOperations() function in CombinedChannelDuplexHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f304212b_f9b7_3ac0_880e_84fd29c29ea3["assertInboundOperations()"]
  9460024d_25ec_0588_e029_9fb5fddbbe6d["CombinedChannelDuplexHandlerTest"]
  f304212b_f9b7_3ac0_880e_84fd29c29ea3 -->|defined in| 9460024d_25ec_0588_e029_9fb5fddbbe6d
  c06269fe_fdc1_5299_593a_e25ea3c25783["testInboundEvents()"]
  c06269fe_fdc1_5299_593a_e25ea3c25783 -->|calls| f304212b_f9b7_3ac0_880e_84fd29c29ea3
  style f304212b_f9b7_3ac0_880e_84fd29c29ea3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java lines 268–278

    private static void assertInboundOperations(InboundEventHandler handler) {
        assertEquals(Event.REGISTERED, handler.pollEvent());
        assertEquals(Event.ACTIVE, handler.pollEvent());
        assertEquals(Event.CHANNEL_READ, handler.pollEvent());
        assertEquals(Event.CHANNEL_READ_COMPLETE, handler.pollEvent());
        assertEquals(Event.EXCEPTION_CAUGHT, handler.pollEvent());
        assertEquals(Event.USER_EVENT_TRIGGERED, handler.pollEvent());
        assertEquals(Event.CHANNEL_WRITABILITY_CHANGED, handler.pollEvent());
        assertEquals(Event.INACTIVE, handler.pollEvent());
        assertEquals(Event.UNREGISTERED, handler.pollEvent());
    }

Domain

Subdomains

Frequently Asked Questions

What does assertInboundOperations() do?
assertInboundOperations() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java.
Where is assertInboundOperations() defined?
assertInboundOperations() is defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java at line 268.
What calls assertInboundOperations()?
assertInboundOperations() is called by 1 function(s): testInboundEvents.

Analyze Your Own Codebase

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

Try Supermodel Free