Home / Function/ notifyClosed() — netty Function Reference

notifyClosed() — netty Function Reference

Architecture documentation for the notifyClosed() function in DefaultHttp2Connection.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  b1e0b661_3c90_ab87_9e53_8ead34bad83a["notifyClosed()"]
  05fa194d_d048_a70f_6ef9_91439d2abc10["DefaultHttp2Connection"]
  b1e0b661_3c90_ab87_9e53_8ead34bad83a -->|defined in| 05fa194d_d048_a70f_6ef9_91439d2abc10
  8adb0879_5971_ccaa_50b1_d48d2463e4b8["removeFromActiveStreams()"]
  8adb0879_5971_ccaa_50b1_d48d2463e4b8 -->|calls| b1e0b661_3c90_ab87_9e53_8ead34bad83a
  b4f137d1_9d69_9f36_f01a_901a4f278bc9["size()"]
  b1e0b661_3c90_ab87_9e53_8ead34bad83a -->|calls| b4f137d1_9d69_9f36_f01a_901a4f278bc9
  style b1e0b661_3c90_ab87_9e53_8ead34bad83a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java lines 352–360

    void notifyClosed(Http2Stream stream) {
        for (int i = 0; i < listeners.size(); i++) {
            try {
                listeners.get(i).onStreamClosed(stream);
            } catch (Throwable cause) {
                logger.error("Caught Throwable from listener onStreamClosed.", cause);
            }
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does notifyClosed() do?
notifyClosed() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java.
Where is notifyClosed() defined?
notifyClosed() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java at line 352.
What does notifyClosed() call?
notifyClosed() calls 1 function(s): size.
What calls notifyClosed()?
notifyClosed() is called by 1 function(s): removeFromActiveStreams.

Analyze Your Own Codebase

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

Try Supermodel Free