notifyHalfClosed() — netty Function Reference
Architecture documentation for the notifyHalfClosed() function in DefaultHttp2Connection.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 5860a2a9_823d_9ba0_3c45_172716ee7b9d["notifyHalfClosed()"] 05fa194d_d048_a70f_6ef9_91439d2abc10["DefaultHttp2Connection"] 5860a2a9_823d_9ba0_3c45_172716ee7b9d -->|defined in| 05fa194d_d048_a70f_6ef9_91439d2abc10 b0bbabf3_9ef1_59e5_be02_dd1e1c9fd442["Http2Stream()"] b0bbabf3_9ef1_59e5_be02_dd1e1c9fd442 -->|calls| 5860a2a9_823d_9ba0_3c45_172716ee7b9d b4f137d1_9d69_9f36_f01a_901a4f278bc9["size()"] 5860a2a9_823d_9ba0_3c45_172716ee7b9d -->|calls| b4f137d1_9d69_9f36_f01a_901a4f278bc9 style 5860a2a9_823d_9ba0_3c45_172716ee7b9d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java lines 342–350
void notifyHalfClosed(Http2Stream stream) {
for (int i = 0; i < listeners.size(); i++) {
try {
listeners.get(i).onStreamHalfClosed(stream);
} catch (Throwable cause) {
logger.error("Caught Throwable from listener onStreamHalfClosed.", cause);
}
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does notifyHalfClosed() do?
notifyHalfClosed() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java.
Where is notifyHalfClosed() defined?
notifyHalfClosed() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java at line 342.
What does notifyHalfClosed() call?
notifyHalfClosed() calls 1 function(s): size.
What calls notifyHalfClosed()?
notifyHalfClosed() is called by 1 function(s): Http2Stream.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free