Home / Function/ encodeNonCompress() — netty Function Reference

encodeNonCompress() — netty Function Reference

Architecture documentation for the encodeNonCompress() function in LzfEncoder.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  251e5e57_80da_017e_b324_be7b805a8db5["encodeNonCompress()"]
  cf653678_8419_ee5d_5141_4973b04e6b00["LzfEncoder"]
  251e5e57_80da_017e_b324_be7b805a8db5 -->|defined in| cf653678_8419_ee5d_5141_4973b04e6b00
  3ba6d3de_599f_0037_5044_8cc82e1307ea["encode()"]
  3ba6d3de_599f_0037_5044_8cc82e1307ea -->|calls| 251e5e57_80da_017e_b324_be7b805a8db5
  3910071b_2c47_0b76_29be_086c744d3370["lzfEncodeNonCompress()"]
  251e5e57_80da_017e_b324_be7b805a8db5 -->|calls| 3910071b_2c47_0b76_29be_086c744d3370
  style 251e5e57_80da_017e_b324_be7b805a8db5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/main/java/io/netty/handler/codec/compression/LzfEncoder.java lines 244–246

    private static int encodeNonCompress(byte[] input, int inputPtr, int length, byte[] output, int outputPtr) {
        return lzfEncodeNonCompress(input, inputPtr, length, output, outputPtr) - outputPtr;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does encodeNonCompress() do?
encodeNonCompress() is a function in the netty codebase, defined in codec-compression/src/main/java/io/netty/handler/codec/compression/LzfEncoder.java.
Where is encodeNonCompress() defined?
encodeNonCompress() is defined in codec-compression/src/main/java/io/netty/handler/codec/compression/LzfEncoder.java at line 244.
What does encodeNonCompress() call?
encodeNonCompress() calls 1 function(s): lzfEncodeNonCompress.
What calls encodeNonCompress()?
encodeNonCompress() is called by 1 function(s): encode.

Analyze Your Own Codebase

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

Try Supermodel Free