fireExceptionCaughtForActiveStream() — netty Function Reference
Architecture documentation for the fireExceptionCaughtForActiveStream() function in Http2MultiplexHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 195994a1_32ac_9be7_2f1e_2a1634ab39a8["fireExceptionCaughtForActiveStream()"] 42ad104c_27ce_3949_598d_983571f45120["Http2MultiplexHandler"] 195994a1_32ac_9be7_2f1e_2a1634ab39a8 -->|defined in| 42ad104c_27ce_3949_598d_983571f45120 098ea8fd_d159_abdb_cfe2_2db0c47476aa["exceptionCaught()"] 098ea8fd_d159_abdb_cfe2_2db0c47476aa -->|calls| 195994a1_32ac_9be7_2f1e_2a1634ab39a8 style 195994a1_32ac_9be7_2f1e_2a1634ab39a8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexHandler.java lines 310–320
private void fireExceptionCaughtForActiveStream(final Throwable cause) throws Http2Exception {
forEachActiveStream(new Http2FrameStreamVisitor() {
@Override
public boolean visit(Http2FrameStream stream) {
AbstractHttp2StreamChannel childChannel = (AbstractHttp2StreamChannel)
((DefaultHttp2FrameStream) stream).attachment;
childChannel.pipeline().fireExceptionCaught(cause);
return true;
}
});
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does fireExceptionCaughtForActiveStream() do?
fireExceptionCaughtForActiveStream() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexHandler.java.
Where is fireExceptionCaughtForActiveStream() defined?
fireExceptionCaughtForActiveStream() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexHandler.java at line 310.
What calls fireExceptionCaughtForActiveStream()?
fireExceptionCaughtForActiveStream() is called by 1 function(s): exceptionCaught.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free