public abstract class io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder<M extends io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage> extends io.netty.handler.codec.memcache.AbstractMemcacheObjectEncoder<M>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder
  super_class: io.netty.handler.codec.memcache.AbstractMemcacheObjectEncoder
{
  private static final int MINIMUM_HEADER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 24

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder this
         0: .line 28
            aload 0 /* this */
            invokespecial io.netty.handler.codec.memcache.AbstractMemcacheObjectEncoder.<init>:()V
            return
        end local 0 // io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/memcache/binary/AbstractBinaryMemcacheEncoder<TM;>;

  protected io.netty.buffer.ByteBuf encodeMessage(io.netty.channel.ChannelHandlerContext, M);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;)Lio/netty/buffer/ByteBuf;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage msg
         0: .line 38
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.alloc:()Lio/netty/buffer/ByteBufAllocator;
            bipush 24
            aload 2 /* msg */
            invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.extrasLength:()B
            iadd
         1: .line 39
            aload 2 /* msg */
            invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.keyLength:()S
            iadd
         2: .line 38
            invokeinterface io.netty.buffer.ByteBufAllocator.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 3 /* buf */
        start local 3 // io.netty.buffer.ByteBuf buf
         3: .line 41
            aload 0 /* this */
            aload 3 /* buf */
            aload 2 /* msg */
            invokevirtual io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder.encodeHeader:(Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;)V
         4: .line 42
            aload 3 /* buf */
            aload 2 /* msg */
            invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.extras:()Lio/netty/buffer/ByteBuf;
            invokestatic io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder.encodeExtras:(Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V
         5: .line 43
            aload 3 /* buf */
            aload 2 /* msg */
            invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.key:()Lio/netty/buffer/ByteBuf;
            invokestatic io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder.encodeKey:(Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V
         6: .line 45
            aload 3 /* buf */
            areturn
        end local 3 // io.netty.buffer.ByteBuf buf
        end local 2 // io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/netty/handler/codec/memcache/binary/AbstractBinaryMemcacheEncoder<TM;>;
            0    7     1   ctx  Lio/netty/channel/ChannelHandlerContext;
            0    7     2   msg  TM;
            3    7     3   buf  Lio/netty/buffer/ByteBuf;
    Signature: (Lio/netty/channel/ChannelHandlerContext;TM;)Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      ctx   
      msg   

  private static void encodeExtras(io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ByteBuf buf
        start local 1 // io.netty.buffer.ByteBuf extras
         0: .line 55
            aload 1 /* extras */
            ifnull 1
            aload 1 /* extras */
            invokevirtual io.netty.buffer.ByteBuf.isReadable:()Z
            ifne 2
         1: .line 56
      StackMap locals:
      StackMap stack:
            return
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            aload 1 /* extras */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 60
            return
        end local 1 // io.netty.buffer.ByteBuf extras
        end local 0 // io.netty.buffer.ByteBuf buf
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0     buf  Lio/netty/buffer/ByteBuf;
            0    4     1  extras  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      buf     
      extras  

  private static void encodeKey(io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ByteBuf buf
        start local 1 // io.netty.buffer.ByteBuf key
         0: .line 69
            aload 1 /* key */
            ifnull 1
            aload 1 /* key */
            invokevirtual io.netty.buffer.ByteBuf.isReadable:()Z
            ifne 2
         1: .line 70
      StackMap locals:
      StackMap stack:
            return
         2: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            aload 1 /* key */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 74
            return
        end local 1 // io.netty.buffer.ByteBuf key
        end local 0 // io.netty.buffer.ByteBuf buf
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0   buf  Lio/netty/buffer/ByteBuf;
            0    4     1   key  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      buf   
      key   

  protected abstract void encodeHeader(io.netty.buffer.ByteBuf, );
    descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (Lio/netty/buffer/ByteBuf;TM;)V
    MethodParameters:
      Name  Flags
      buf   
      msg   

  protected io.netty.buffer.ByteBuf encodeMessage(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.memcache.MemcacheMessage);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/memcache/MemcacheMessage;)Lio/netty/buffer/ByteBuf;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage
            invokevirtual io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder.encodeMessage:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;)Lio/netty/buffer/ByteBuf;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <M::Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;>Lio/netty/handler/codec/memcache/AbstractMemcacheObjectEncoder<TM;>;
SourceFile: "AbstractBinaryMemcacheEncoder.java"