Home / Function/ setSessionCacheSize() — netty Function Reference

setSessionCacheSize() — netty Function Reference

Architecture documentation for the setSessionCacheSize() function in QuicheQuicSslContext.java from the netty codebase.

Function java Buffer Allocators calls 2 called by 2

Entity Profile

Dependency Diagram

graph TD
  3fc73f85_9f2a_b38b_ae96_69d69b1158ae["setSessionCacheSize()"]
  ea71e2fc_ba66_6542_2be3_948d21522ebd["QuicheQuicSslContext"]
  3fc73f85_9f2a_b38b_ae96_69d69b1158ae -->|defined in| ea71e2fc_ba66_6542_2be3_948d21522ebd
  170ef7cf_9963_b6fb_20f9_cee05faaa18e["setSessionCacheSize()"]
  170ef7cf_9963_b6fb_20f9_cee05faaa18e -->|calls| 3fc73f85_9f2a_b38b_ae96_69d69b1158ae
  4c11817f_e3df_d049_1a15_4c91d56786ee["QuicheQuicSslContext()"]
  4c11817f_e3df_d049_1a15_4c91d56786ee -->|calls| 3fc73f85_9f2a_b38b_ae96_69d69b1158ae
  170ef7cf_9963_b6fb_20f9_cee05faaa18e["setSessionCacheSize()"]
  3fc73f85_9f2a_b38b_ae96_69d69b1158ae -->|calls| 170ef7cf_9963_b6fb_20f9_cee05faaa18e
  3c4d5e66_b349_d95a_63ea_c8d3f70edbb8["address()"]
  3fc73f85_9f2a_b38b_ae96_69d69b1158ae -->|calls| 3c4d5e66_b349_d95a_63ea_c8d3f70edbb8
  style 3fc73f85_9f2a_b38b_ae96_69d69b1158ae fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslContext.java lines 478–485

    void setSessionCacheSize(int size) throws IllegalArgumentException {
        if (sessionCache != null) {
            sessionCache.setSessionCacheSize(size);
        } else {
            BoringSSL.SSLContext_setSessionCacheSize(nativeSslContext.address(), size);
            sessionCacheSize = size;
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does setSessionCacheSize() do?
setSessionCacheSize() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslContext.java.
Where is setSessionCacheSize() defined?
setSessionCacheSize() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslContext.java at line 478.
What does setSessionCacheSize() call?
setSessionCacheSize() calls 2 function(s): address, setSessionCacheSize.
What calls setSessionCacheSize()?
setSessionCacheSize() is called by 2 function(s): QuicheQuicSslContext, setSessionCacheSize.

Analyze Your Own Codebase

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

Try Supermodel Free