Home / Function/ removeSessionWithId() — netty Function Reference

removeSessionWithId() — netty Function Reference

Architecture documentation for the removeSessionWithId() function in OpenSslSessionCache.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  adc4a21b_2741_c870_2d79_c0b7f58a00b1["removeSessionWithId()"]
  6355c604_3e83_2b17_e056_558795a68fc3["OpenSslSessionCache"]
  adc4a21b_2741_c870_2d79_c0b7f58a00b1 -->|defined in| 6355c604_3e83_2b17_e056_558795a68fc3
  219256b2_175f_0f2b_aca5_e31008ba7083["getSession()"]
  219256b2_175f_0f2b_aca5_e31008ba7083 -->|calls| adc4a21b_2741_c870_2d79_c0b7f58a00b1
  122cf5ab_8a79_b12f_0bf0_2819ed57ca9a["OpenSslInternalSession()"]
  122cf5ab_8a79_b12f_0bf0_2819ed57ca9a -->|calls| adc4a21b_2741_c870_2d79_c0b7f58a00b1
  fffde80d_79d3_d174_a852_3dbd539cda36["notifyRemovalAndFree()"]
  adc4a21b_2741_c870_2d79_c0b7f58a00b1 -->|calls| fffde80d_79d3_d174_a852_3dbd539cda36
  style adc4a21b_2741_c870_2d79_c0b7f58a00b1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java lines 229–234

    final synchronized void removeSessionWithId(OpenSslSessionId id) {
        NativeSslSession sslSession = sessions.remove(id);
        if (sslSession != null) {
            notifyRemovalAndFree(sslSession);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does removeSessionWithId() do?
removeSessionWithId() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java.
Where is removeSessionWithId() defined?
removeSessionWithId() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java at line 229.
What does removeSessionWithId() call?
removeSessionWithId() calls 1 function(s): notifyRemovalAndFree.
What calls removeSessionWithId()?
removeSessionWithId() is called by 2 function(s): OpenSslInternalSession, getSession.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free