Home / Function/ update() — netty Function Reference

update() — netty Function Reference

Architecture documentation for the update() function in ByteBufChecksum.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  9d535c95_3969_d892_6cee_eff15adf97d7["update()"]
  18dbf02c_fcee_6c04_8488_412942c3839e["ByteBufChecksum"]
  9d535c95_3969_d892_6cee_eff15adf97d7 -->|defined in| 18dbf02c_fcee_6c04_8488_412942c3839e
  a8f953ed_ae04_2b8c_c040_79972888e6c9["update()"]
  a8f953ed_ae04_2b8c_c040_79972888e6c9 -->|calls| 9d535c95_3969_d892_6cee_eff15adf97d7
  a8f953ed_ae04_2b8c_c040_79972888e6c9["update()"]
  9d535c95_3969_d892_6cee_eff15adf97d7 -->|calls| a8f953ed_ae04_2b8c_c040_79972888e6c9
  style 9d535c95_3969_d892_6cee_eff15adf97d7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/main/java/io/netty/handler/codec/compression/ByteBufChecksum.java lines 54–60

    public void update(ByteBuf b, int off, int len) {
        if (b.hasArray()) {
            update(b.array(), b.arrayOffset() + off, len);
        } else {
            b.forEachByte(off, len, updateProcessor);
        }
    }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free