bindCompressorToStream() — netty Function Reference
Architecture documentation for the bindCompressorToStream() function in CompressorHttp2ConnectionEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 05f589c3_391d_c20c_d485_95f6c4f2230c["bindCompressorToStream()"] 8d787c1c_5f3d_4d80_1537_18462b224aaf["CompressorHttp2ConnectionEncoder"] 05f589c3_391d_c20c_d485_95f6c4f2230c -->|defined in| 8d787c1c_5f3d_4d80_1537_18462b224aaf 379ae9ad_6cf0_7b95_0348_d4a8f9f0c7c1["ChannelFuture()"] 379ae9ad_6cf0_7b95_0348_d4a8f9f0c7c1 -->|calls| 05f589c3_391d_c20c_d485_95f6c4f2230c style 05f589c3_391d_c20c_d485_95f6c4f2230c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/CompressorHttp2ConnectionEncoder.java lines 421–428
private void bindCompressorToStream(EmbeddedChannel compressor, int streamId) {
if (compressor != null) {
Http2Stream stream = connection().stream(streamId);
if (stream != null) {
stream.setProperty(propertyKey, compressor);
}
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does bindCompressorToStream() do?
bindCompressorToStream() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/CompressorHttp2ConnectionEncoder.java.
Where is bindCompressorToStream() defined?
bindCompressorToStream() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/CompressorHttp2ConnectionEncoder.java at line 421.
What calls bindCompressorToStream()?
bindCompressorToStream() is called by 1 function(s): ChannelFuture.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free