Home / Function/ FullMemcacheMessage() — netty Function Reference

FullMemcacheMessage() — netty Function Reference

Architecture documentation for the FullMemcacheMessage() function in BinaryMemcacheObjectAggregator.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  6d80932f_df69_7e4b_b59c_b55e2620fd98["FullMemcacheMessage()"]
  71b48cdd_3474_4f0b_6eb9_4f124c3da71a["BinaryMemcacheObjectAggregator"]
  6d80932f_df69_7e4b_b59c_b55e2620fd98 -->|defined in| 71b48cdd_3474_4f0b_6eb9_4f124c3da71a
  style 6d80932f_df69_7e4b_b59c_b55e2620fd98 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheObjectAggregator.java lines 45–57

    @Override
    protected FullMemcacheMessage beginAggregation(BinaryMemcacheMessage start, ByteBuf content) throws Exception {
        if (start instanceof BinaryMemcacheRequest) {
            return toFullRequest((BinaryMemcacheRequest) start, content);
        }

        if (start instanceof BinaryMemcacheResponse) {
            return toFullResponse((BinaryMemcacheResponse) start, content);
        }

        // Should not reach here.
        throw new Error("Unexpected memcache message type: " + className(start));
    }

Domain

Subdomains

Frequently Asked Questions

What does FullMemcacheMessage() do?
FullMemcacheMessage() is a function in the netty codebase, defined in codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheObjectAggregator.java.
Where is FullMemcacheMessage() defined?
FullMemcacheMessage() is defined in codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheObjectAggregator.java at line 45.

Analyze Your Own Codebase

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

Try Supermodel Free