Home / Function/ acceptGood() — netty Function Reference

acceptGood() — netty Function Reference

Architecture documentation for the acceptGood() function in OpenSslSessionStats.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f9f8a4c4_4d20_e12f_a566_b8248f38b5a0["acceptGood()"]
  c697bbe5_cfab_cde7_97a5_6adada18acbc["OpenSslSessionStats"]
  f9f8a4c4_4d20_e12f_a566_b8248f38b5a0 -->|defined in| c697bbe5_cfab_cde7_97a5_6adada18acbc
  style f9f8a4c4_4d20_e12f_a566_b8248f38b5a0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/OpenSslSessionStats.java lines 108–116

    public long acceptGood() {
        Lock readerLock = context.ctxLock.readLock();
        readerLock.lock();
        try {
            return SSLContext.sessionAcceptGood(context.ctx);
        } finally {
            readerLock.unlock();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does acceptGood() do?
acceptGood() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionStats.java.
Where is acceptGood() defined?
acceptGood() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSslSessionStats.java at line 108.

Analyze Your Own Codebase

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

Try Supermodel Free