ZstdDecoderTest Class — netty Architecture
Architecture documentation for the ZstdDecoderTest class in ZstdDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 92648812_3d6a_e496_24c4_cc8586a9ad23["ZstdDecoderTest"] 2ad0430d_d5a8_c499_5fc6_6036f749b87e["ZstdDecoderTest.java"] 92648812_3d6a_e496_24c4_cc8586a9ad23 -->|defined in| 2ad0430d_d5a8_c499_5fc6_6036f749b87e 4b3b28c5_a387_688e_1512_644b09ec6f43["ZstdDecoderTest()"] 92648812_3d6a_e496_24c4_cc8586a9ad23 -->|method| 4b3b28c5_a387_688e_1512_644b09ec6f43 5fab4be5_484e_3f58_b0ea_39f91d90a911["EmbeddedChannel()"] 92648812_3d6a_e496_24c4_cc8586a9ad23 -->|method| 5fab4be5_484e_3f58_b0ea_39f91d90a911 5f00d7ac_5bf3_4fa3_e596_3aa7fb99a172["compress()"] 92648812_3d6a_e496_24c4_cc8586a9ad23 -->|method| 5f00d7ac_5bf3_4fa3_e596_3aa7fb99a172
Relationship Graph
Source Code
codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdDecoderTest.java lines 22–36
public class ZstdDecoderTest extends AbstractDecoderTest {
public ZstdDecoderTest() throws Exception {
}
@Override
public EmbeddedChannel createChannel() {
return new EmbeddedChannel(new ZstdDecoder());
}
@Override
protected byte[] compress(byte[] data) throws Exception {
return Zstd.compress(data);
}
}
Source
Frequently Asked Questions
What is the ZstdDecoderTest class?
ZstdDecoderTest is a class in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdDecoderTest.java.
Where is ZstdDecoderTest defined?
ZstdDecoderTest is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/ZstdDecoderTest.java at line 22.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free