doInboundOperations() — netty Function Reference
Architecture documentation for the doInboundOperations() function in CombinedChannelDuplexHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7ddb4c66_dde3_174a_cca0_169621a69abf["doInboundOperations()"] 9460024d_25ec_0588_e029_9fb5fddbbe6d["CombinedChannelDuplexHandlerTest"] 7ddb4c66_dde3_174a_cca0_169621a69abf -->|defined in| 9460024d_25ec_0588_e029_9fb5fddbbe6d c06269fe_fdc1_5299_593a_e25ea3c25783["testInboundEvents()"] c06269fe_fdc1_5299_593a_e25ea3c25783 -->|calls| 7ddb4c66_dde3_174a_cca0_169621a69abf style 7ddb4c66_dde3_174a_cca0_169621a69abf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java lines 256–266
private static void doInboundOperations(Channel channel) {
channel.pipeline().fireChannelRegistered();
channel.pipeline().fireChannelActive();
channel.pipeline().fireChannelRead(MSG);
channel.pipeline().fireChannelReadComplete();
channel.pipeline().fireExceptionCaught(CAUSE);
channel.pipeline().fireUserEventTriggered(USER_EVENT);
channel.pipeline().fireChannelWritabilityChanged();
channel.pipeline().fireChannelInactive();
channel.pipeline().fireChannelUnregistered();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does doInboundOperations() do?
doInboundOperations() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java.
Where is doInboundOperations() defined?
doInboundOperations() is defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java at line 256.
What calls doInboundOperations()?
doInboundOperations() 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