Home / Function/ fillArrayWithCompressibleData() — netty Function Reference

fillArrayWithCompressibleData() — netty Function Reference

Architecture documentation for the fillArrayWithCompressibleData() function in AbstractCompressionTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9ba7441e_d0ae_0cbe_52b0_c67677500c29["fillArrayWithCompressibleData()"]
  c6d538d2_dfb0_83a4_14a0_0c68add3790e["AbstractCompressionTest"]
  9ba7441e_d0ae_0cbe_52b0_c67677500c29 -->|defined in| c6d538d2_dfb0_83a4_14a0_0c68add3790e
  style 9ba7441e_d0ae_0cbe_52b0_c67677500c29 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractCompressionTest.java lines 33–37

    private static void fillArrayWithCompressibleData(byte[] array) {
        for (int i = 0; i < array.length; i++) {
            array[i] = i % 4 != 0 ? 0 : (byte) rand.nextInt();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does fillArrayWithCompressibleData() do?
fillArrayWithCompressibleData() is a function in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractCompressionTest.java.
Where is fillArrayWithCompressibleData() defined?
fillArrayWithCompressibleData() is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractCompressionTest.java at line 33.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free