registeredChannels() — netty Function Reference
Architecture documentation for the registeredChannels() function in AbstractSingleThreadEventLoopTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8e4c2417_e591_227d_d30d_62c23430fd6d["registeredChannels()"] eb487d77_b896_e5c3_20f1_2b7144dc7cf5["AbstractSingleThreadEventLoopTest"] 8e4c2417_e591_227d_d30d_62c23430fd6d -->|defined in| eb487d77_b896_e5c3_20f1_2b7144dc7cf5 52462c2e_4250_f1ae_61ef_3b822985a83b["testChannelsRegistered()"] 52462c2e_4250_f1ae_61ef_3b822985a83b -->|calls| 8e4c2417_e591_227d_d30d_62c23430fd6d d3288ff6_2cfa_b5ba_fcb4_f110c904eaec["checkNumRegisteredChannels()"] d3288ff6_2cfa_b5ba_fcb4_f110c904eaec -->|calls| 8e4c2417_e591_227d_d30d_62c23430fd6d b755284f_722b_7273_735c_350c2bc74ed2["testChannelsIterator()"] b755284f_722b_7273_735c_350c2bc74ed2 -->|calls| 8e4c2417_e591_227d_d30d_62c23430fd6d c048b53a_33d7_8392_8dee_df47ef4ded8d["testChannelsIteratorRemoveThrows()"] c048b53a_33d7_8392_8dee_df47ef4ded8d -->|calls| 8e4c2417_e591_227d_d30d_62c23430fd6d style 8e4c2417_e591_227d_d30d_62c23430fd6d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/AbstractSingleThreadEventLoopTest.java lines 114–121
private static int registeredChannels(final SingleThreadEventLoop loop) throws Exception {
return loop.submit(new Callable<Integer>() {
@Override
public Integer call() {
return loop.registeredChannels();
}
}).get(1, TimeUnit.SECONDS);
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does registeredChannels() do?
registeredChannels() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/AbstractSingleThreadEventLoopTest.java.
Where is registeredChannels() defined?
registeredChannels() is defined in testsuite/src/main/java/io/netty/testsuite/transport/AbstractSingleThreadEventLoopTest.java at line 114.
What calls registeredChannels()?
registeredChannels() is called by 4 function(s): checkNumRegisteredChannels, testChannelsIterator, testChannelsIteratorRemoveThrows, testChannelsRegistered.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free