Home / Class/ BinaryMemcacheResponseStatus Class — netty Architecture

BinaryMemcacheResponseStatus Class — netty Architecture

Architecture documentation for the BinaryMemcacheResponseStatus class in BinaryMemcacheResponseStatus.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  288d57a4_b965_c6fa_9aa8_d044c9932da2["BinaryMemcacheResponseStatus"]
  670f0123_af51_c9fd_13b1_0c2abeeb7487["BinaryMemcacheResponseStatus.java"]
  288d57a4_b965_c6fa_9aa8_d044c9932da2 -->|defined in| 670f0123_af51_c9fd_13b1_0c2abeeb7487
  04349407_9981_2210_1d51_883fac20fe56["BinaryMemcacheResponseStatus()"]
  288d57a4_b965_c6fa_9aa8_d044c9932da2 -->|method| 04349407_9981_2210_1d51_883fac20fe56

Relationship Graph

Source Code

codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheResponseStatus.java lines 23–41

@UnstableApi
public final class BinaryMemcacheResponseStatus {

    private BinaryMemcacheResponseStatus() {
        // disallow construction
    }

    public static final short SUCCESS = 0x00;
    public static final short KEY_ENOENT = 0x01;
    public static final short KEY_EEXISTS = 0x02;
    public static final short E2BIG = 0x03;
    public static final short EINVA = 0x04;
    public static final short NOT_STORED = 0x05;
    public static final short DELTA_BADVAL = 0x06;
    public static final short AUTH_ERROR = 0x20;
    public static final short AUTH_CONTINUE = 0x21;
    public static final short UNKNOWN_COMMAND = 0x81;
    public static final short ENOMEM = 0x82;
}

Frequently Asked Questions

What is the BinaryMemcacheResponseStatus class?
BinaryMemcacheResponseStatus is a class in the netty codebase, defined in codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheResponseStatus.java.
Where is BinaryMemcacheResponseStatus defined?
BinaryMemcacheResponseStatus is defined in codec-memcache/src/main/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheResponseStatus.java at line 23.

Analyze Your Own Codebase

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

Try Supermodel Free