Home / Function/ close() — netty Function Reference

close() — netty Function Reference

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

Function java Buffer Allocators calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  6fcf34b1_3222_1c25_37b2_cb359e5628e0["close()"]
  ae52002d_8b57_6128_3dc8_7352beeb0a8f["NativeSslSession"]
  6fcf34b1_3222_1c25_37b2_cb359e5628e0 -->|defined in| ae52002d_8b57_6128_3dc8_7352beeb0a8f
  b0c9f020_ce9e_89e3_fb97_acebd4a5fba9["sessionCreated()"]
  b0c9f020_ce9e_89e3_fb97_acebd4a5fba9 -->|calls| 6fcf34b1_3222_1c25_37b2_cb359e5628e0
  22426940_1d17_2fb0_3083_17f8a584e7e4["free()"]
  22426940_1d17_2fb0_3083_17f8a584e7e4 -->|calls| 6fcf34b1_3222_1c25_37b2_cb359e5628e0
  bd37c045_7f98_2c51_5a54_86ef39d7cd7f["invalidate()"]
  6fcf34b1_3222_1c25_37b2_cb359e5628e0 -->|calls| bd37c045_7f98_2c51_5a54_86ef39d7cd7f
  style 6fcf34b1_3222_1c25_37b2_cb359e5628e0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java lines 360–367

        void close() {
            assert !freed;
            freed = true;
            invalidate();
            if (leakTracker != null) {
                leakTracker.close(this);
            }
        }

Domain

Subdomains

Calls

Frequently Asked Questions

What does close() do?
close() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java.
Where is close() defined?
close() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionCache.java at line 360.
What does close() call?
close() calls 1 function(s): invalidate.
What calls close()?
close() is called by 2 function(s): free, sessionCreated.

Analyze Your Own Codebase

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

Try Supermodel Free