ZstdIntegrationTest Class — netty Architecture
Architecture documentation for the ZstdIntegrationTest class in ZstdIntegrationTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1f0f7353_5da8_5aa9_47cc_008bd35eebbe["ZstdIntegrationTest"] 8d4b2e1b_51fd_a35f_1da0_f6b0a107a909["ZstdIntegrationTest.java"] 1f0f7353_5da8_5aa9_47cc_008bd35eebbe -->|defined in| 8d4b2e1b_51fd_a35f_1da0_f6b0a107a909 7a06e32d_f69f_cecd_d737_d91e75d7e82c["EmbeddedChannel()"] 1f0f7353_5da8_5aa9_47cc_008bd35eebbe -->|method| 7a06e32d_f69f_cecd_d737_d91e75d7e82c
Relationship Graph
Source Code
codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdIntegrationTest.java lines 22–35
public class ZstdIntegrationTest extends AbstractIntegrationTest {
private static final int BLOCK_SIZE = 1 << 20;
@Override
protected EmbeddedChannel createEncoder() {
return new EmbeddedChannel(new ZstdEncoder(BLOCK_SIZE, DEFAULT_MAX_ENCODE_SIZE));
}
@Override
protected EmbeddedChannel createDecoder() {
return new EmbeddedChannel(new ZstdDecoder());
}
}
Defined In
Source
Frequently Asked Questions
What is the ZstdIntegrationTest class?
ZstdIntegrationTest is a class in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdIntegrationTest.java.
Where is ZstdIntegrationTest defined?
ZstdIntegrationTest is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdIntegrationTest.java at line 22.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free