forwardData() — netty Function Reference
Architecture documentation for the forwardData() function in CloseNotifyTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 57cc154b_b9c1_7bdd_c318_8f6ea3e5e55e["forwardData()"] 91635dfc_456c_fec9_4413_a1ee45d49032["CloseNotifyTest"] 57cc154b_b9c1_7bdd_c318_8f6ea3e5e55e -->|defined in| 91635dfc_456c_fec9_4413_a1ee45d49032 c8dc5de5_36bd_d22b_8ec3_7c93cc9586c8["eventsOrder()"] c8dc5de5_36bd_d22b_8ec3_7c93cc9586c8 -->|calls| 57cc154b_b9c1_7bdd_c318_8f6ea3e5e55e style 57cc154b_b9c1_7bdd_c318_8f6ea3e5e55e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java lines 186–191
private static void forwardData(EmbeddedChannel from, EmbeddedChannel to) {
ByteBuf in;
while ((in = from.readOutbound()) != null) {
to.writeInbound(in);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does forwardData() do?
forwardData() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java.
Where is forwardData() defined?
forwardData() is defined in handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java at line 186.
What calls forwardData()?
forwardData() is called by 1 function(s): eventsOrder.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free