Home / Function/ isCommentBlockStart() — netty Function Reference

isCommentBlockStart() — netty Function Reference

Architecture documentation for the isCommentBlockStart() function in XmlFrameDecoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  3a7fee41_cc4a_eb14_8d1a_edf3de107e18["isCommentBlockStart()"]
  7d6b87e5_eb7b_72e0_1afd_174c09a039b0["XmlFrameDecoder"]
  3a7fee41_cc4a_eb14_8d1a_edf3de107e18 -->|defined in| 7d6b87e5_eb7b_72e0_1afd_174c09a039b0
  16b71bcb_9bc6_dcdf_9d02_291227b77db6["decode()"]
  16b71bcb_9bc6_dcdf_9d02_291227b77db6 -->|calls| 3a7fee41_cc4a_eb14_8d1a_edf3de107e18
  style 3a7fee41_cc4a_eb14_8d1a_edf3de107e18 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-xml/src/main/java/io/netty/handler/codec/xml/XmlFrameDecoder.java lines 228–232

    private static boolean isCommentBlockStart(final ByteBuf in, final int i) {
        return i < in.writerIndex() - 3
                && in.getByte(i + 2) == '-'
                && in.getByte(i + 3) == '-';
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does isCommentBlockStart() do?
isCommentBlockStart() is a function in the netty codebase, defined in codec-xml/src/main/java/io/netty/handler/codec/xml/XmlFrameDecoder.java.
Where is isCommentBlockStart() defined?
isCommentBlockStart() is defined in codec-xml/src/main/java/io/netty/handler/codec/xml/XmlFrameDecoder.java at line 228.
What calls isCommentBlockStart()?
isCommentBlockStart() is called by 1 function(s): decode.

Analyze Your Own Codebase

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

Try Supermodel Free