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 0: aload 0
invokespecial io.netty.handler.codec.memcache.AbstractMemcacheObjectEncoder.<init>:()V
return
end local 0 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 start local 1 start local 2 0: aload 1
invokeinterface io.netty.channel.ChannelHandlerContext.alloc:()Lio/netty/buffer/ByteBufAllocator;
bipush 24
aload 2
invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.extrasLength:()B
iadd
1: aload 2
invokeinterface io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage.keyLength:()S
iadd
2: invokeinterface io.netty.buffer.ByteBufAllocator.buffer:(I)Lio/netty/buffer/ByteBuf;
astore 3
start local 3 3: aload 0
aload 3
aload 2
invokevirtual io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheEncoder.encodeHeader:(Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/memcache/binary/BinaryMemcacheMessage;)V
4: aload 3
aload 2
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: aload 3
aload 2
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: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 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 start local 1 0: aload 1
ifnull 1
aload 1
invokevirtual io.netty.buffer.ByteBuf.isReadable:()Z
ifne 2
1: StackMap locals:
StackMap stack:
return
2: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
pop
3: return
end local 1 end local 0 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 start local 1 0: aload 1
ifnull 1
aload 1
invokevirtual io.netty.buffer.ByteBuf.isReadable:()Z
ifne 2
1: StackMap locals:
StackMap stack:
return
2: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
pop
3: return
end local 1 end local 0 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: 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"