currentSessionCacheSize() — netty Function Reference
Architecture documentation for the currentSessionCacheSize() function in SSLEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 86625e77_2660_9fd9_6d8d_5db0cbb6be96["currentSessionCacheSize()"] 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b["SSLEngineTest"] 86625e77_2660_9fd9_6d8d_5db0cbb6be96 -->|defined in| 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b 5b1aff79_52fd_e366_c29d_676e7d63d1e6["doHandshakeVerifyReusedAndClose()"] 5b1aff79_52fd_e366_c29d_676e7d63d1e6 -->|calls| 86625e77_2660_9fd9_6d8d_5db0cbb6be96 style 86625e77_2660_9fd9_6d8d_5db0cbb6be96 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 3401–3409
private static int currentSessionCacheSize(SSLSessionContext ctx) {
Enumeration<byte[]> ids = ctx.getIds();
int i = 0;
while (ids.hasMoreElements()) {
i++;
ids.nextElement();
}
return i;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does currentSessionCacheSize() do?
currentSessionCacheSize() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is currentSessionCacheSize() defined?
currentSessionCacheSize() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 3401.
What calls currentSessionCacheSize()?
currentSessionCacheSize() is called by 1 function(s): doHandshakeVerifyReusedAndClose.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free