remoteSettings() — netty Function Reference
Architecture documentation for the remoteSettings() function in StreamBufferingEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 33aede06_2799_6b12_4676_81ebe46c7c10["remoteSettings()"] 29cd10ea_888d_e1b6_5974_a15b31b4b5f0["StreamBufferingEncoder"] 33aede06_2799_6b12_4676_81ebe46c7c10 -->|defined in| 29cd10ea_888d_e1b6_5974_a15b31b4b5f0 44468faa_3bed_025a_119e_5a314295a695["updateMaxConcurrentStreams()"] 33aede06_2799_6b12_4676_81ebe46c7c10 -->|calls| 44468faa_3bed_025a_119e_5a314295a695 style 33aede06_2799_6b12_4676_81ebe46c7c10 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java lines 242–248
@Override
public void remoteSettings(Http2Settings settings) throws Http2Exception {
// Need to let the delegate decoder handle the settings first, so that it sees the
// new setting before we attempt to create any new streams.
super.remoteSettings(settings);
updateMaxConcurrentStreams();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does remoteSettings() do?
remoteSettings() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java.
Where is remoteSettings() defined?
remoteSettings() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java at line 242.
What does remoteSettings() call?
remoteSettings() calls 1 function(s): updateMaxConcurrentStreams.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free