getIds() — netty Function Reference
Architecture documentation for the getIds() function in OpenSslSessionCache.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d40342d8_04c8_a329_4ddc_6a5e626a94c8["getIds()"] 6355c604_3e83_2b17_e056_558795a68fc3["OpenSslSessionCache"] d40342d8_04c8_a329_4ddc_6a5e626a94c8 -->|defined in| 6355c604_3e83_2b17_e056_558795a68fc3 ad6e504f_835f_5a30_4635_c8827fa4567b["isValid()"] d40342d8_04c8_a329_4ddc_6a5e626a94c8 -->|calls| ad6e504f_835f_5a30_4635_c8827fa4567b style d40342d8_04c8_a329_4ddc_6a5e626a94c8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java lines 265–277
final List<OpenSslSessionId> getIds() {
final OpenSslInternalSession[] sessionsArray;
synchronized (this) {
sessionsArray = sessions.values().toArray(EMPTY_SESSIONS);
}
List<OpenSslSessionId> ids = new ArrayList<OpenSslSessionId>(sessionsArray.length);
for (OpenSslInternalSession session: sessionsArray) {
if (session.isValid()) {
ids.add(session.sessionId());
}
}
return ids;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does getIds() do?
getIds() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java.
Where is getIds() defined?
getIds() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java at line 265.
What does getIds() call?
getIds() calls 1 function(s): isValid.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free