doOutboundOperations() — netty Function Reference
Architecture documentation for the doOutboundOperations() function in CombinedChannelDuplexHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fea48d8b_c02b_5b24_c3d4_4003a2c24e9d["doOutboundOperations()"] 9460024d_25ec_0588_e029_9fb5fddbbe6d["CombinedChannelDuplexHandlerTest"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|defined in| 9460024d_25ec_0588_e029_9fb5fddbbe6d 4464681b_1d85_ed4d_10f0_a87df371f687["testOutboundEvents()"] 4464681b_1d85_ed4d_10f0_a87df371f687 -->|calls| fea48d8b_c02b_5b24_c3d4_4003a2c24e9d 96d4af81_a2b4_26db_45c9_e717d753bc7b["bind()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 96d4af81_a2b4_26db_45c9_e717d753bc7b 9524403e_b4a7_5578_74ea_1eb43c3b6262["connect()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 9524403e_b4a7_5578_74ea_1eb43c3b6262 348467f5_ee94_ea82_e7b6_4e44a0f622ed["write()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 348467f5_ee94_ea82_e7b6_4e44a0f622ed 57b29a34_9270_bfbb_b521_0a55cd6de021["flush()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 57b29a34_9270_bfbb_b521_0a55cd6de021 73bbdbe6_7765_a5be_7711_de2299688379["read()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 73bbdbe6_7765_a5be_7711_de2299688379 081dc255_e8c9_ac4c_b66e_ddd00f07e206["disconnect()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 081dc255_e8c9_ac4c_b66e_ddd00f07e206 685f57ed_729e_a9f6_b762_81412763289e["close()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| 685f57ed_729e_a9f6_b762_81412763289e fec32aa8_4bab_4285_138e_426f49e332fd["deregister()"] fea48d8b_c02b_5b24_c3d4_4003a2c24e9d -->|calls| fec32aa8_4bab_4285_138e_426f49e332fd style fea48d8b_c02b_5b24_c3d4_4003a2c24e9d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java lines 234–243
private static void doOutboundOperations(Channel channel) {
channel.pipeline().bind(LOCAL_ADDRESS).syncUninterruptibly();
channel.pipeline().connect(REMOTE_ADDRESS, LOCAL_ADDRESS).syncUninterruptibly();
channel.pipeline().write(MSG).syncUninterruptibly();
channel.pipeline().flush();
channel.pipeline().read();
channel.pipeline().disconnect().syncUninterruptibly();
channel.pipeline().close().syncUninterruptibly();
channel.pipeline().deregister().syncUninterruptibly();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does doOutboundOperations() do?
doOutboundOperations() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java.
Where is doOutboundOperations() defined?
doOutboundOperations() is defined in transport/src/test/java/io/netty/channel/CombinedChannelDuplexHandlerTest.java at line 234.
What does doOutboundOperations() call?
doOutboundOperations() calls 8 function(s): bind, close, connect, deregister, disconnect, flush, read, write.
What calls doOutboundOperations()?
doOutboundOperations() is called by 1 function(s): testOutboundEvents.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free