public class io.netty.handler.codec.serialization.ObjectDecoder extends io.netty.handler.codec.LengthFieldBasedFrameDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.serialization.ObjectDecoder
  super_class: io.netty.handler.codec.LengthFieldBasedFrameDecoder
{
  private final io.netty.handler.codec.serialization.ClassResolver classResolver;
    descriptor: Lio/netty/handler/codec/serialization/ClassResolver;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.netty.handler.codec.serialization.ClassResolver);
    descriptor: (Lio/netty/handler/codec/serialization/ClassResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
        start local 1 // io.netty.handler.codec.serialization.ClassResolver classResolver
         0: .line 49
            aload 0 /* this */
            ldc 1048576
            aload 1 /* classResolver */
            invokespecial io.netty.handler.codec.serialization.ObjectDecoder.<init>:(ILio/netty/handler/codec/serialization/ClassResolver;)V
         1: .line 50
            return
        end local 1 // io.netty.handler.codec.serialization.ClassResolver classResolver
        end local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/netty/handler/codec/serialization/ObjectDecoder;
            0    2     1  classResolver  Lio/netty/handler/codec/serialization/ClassResolver;
    MethodParameters:
               Name  Flags
      classResolver  

  public void <init>(int, io.netty.handler.codec.serialization.ClassResolver);
    descriptor: (ILio/netty/handler/codec/serialization/ClassResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
        start local 1 // int maxObjectSize
        start local 2 // io.netty.handler.codec.serialization.ClassResolver classResolver
         0: .line 63
            aload 0 /* this */
            iload 1 /* maxObjectSize */
            iconst_0
            iconst_4
            iconst_0
            iconst_4
            invokespecial io.netty.handler.codec.LengthFieldBasedFrameDecoder.<init>:(IIIII)V
         1: .line 64
            aload 0 /* this */
            aload 2 /* classResolver */
            putfield io.netty.handler.codec.serialization.ObjectDecoder.classResolver:Lio/netty/handler/codec/serialization/ClassResolver;
         2: .line 65
            return
        end local 2 // io.netty.handler.codec.serialization.ClassResolver classResolver
        end local 1 // int maxObjectSize
        end local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/netty/handler/codec/serialization/ObjectDecoder;
            0    3     1  maxObjectSize  I
            0    3     2  classResolver  Lio/netty/handler/codec/serialization/ClassResolver;
    MethodParameters:
               Name  Flags
      maxObjectSize  
      classResolver  

  protected java.lang.Object decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.buffer.ByteBuf in
         0: .line 69
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* in */
            invokespecial io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Ljava/lang/Object;
            checkcast io.netty.buffer.ByteBuf
            astore 3 /* frame */
        start local 3 // io.netty.buffer.ByteBuf frame
         1: .line 70
            aload 3 /* frame */
            ifnonnull 3
         2: .line 71
            aconst_null
            areturn
         3: .line 74
      StackMap locals: io.netty.buffer.ByteBuf
      StackMap stack:
            new io.netty.handler.codec.serialization.CompactObjectInputStream
            dup
            new io.netty.buffer.ByteBufInputStream
            dup
            aload 3 /* frame */
            iconst_1
            invokespecial io.netty.buffer.ByteBufInputStream.<init>:(Lio/netty/buffer/ByteBuf;Z)V
            aload 0 /* this */
            getfield io.netty.handler.codec.serialization.ObjectDecoder.classResolver:Lio/netty/handler/codec/serialization/ClassResolver;
            invokespecial io.netty.handler.codec.serialization.CompactObjectInputStream.<init>:(Ljava/io/InputStream;Lio/netty/handler/codec/serialization/ClassResolver;)V
            astore 4 /* ois */
        start local 4 // java.io.ObjectInputStream ois
         4: .line 76
            aload 4 /* ois */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 6
         5: .line 78
            aload 4 /* ois */
            invokevirtual java.io.ObjectInputStream.close:()V
         6: .line 76
            aload 6
            areturn
         7: .line 77
      StackMap locals: io.netty.handler.codec.serialization.ObjectDecoder io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf io.netty.buffer.ByteBuf java.io.ObjectInputStream
      StackMap stack: java.lang.Throwable
            astore 5
         8: .line 78
            aload 4 /* ois */
            invokevirtual java.io.ObjectInputStream.close:()V
         9: .line 79
            aload 5
            athrow
        end local 4 // java.io.ObjectInputStream ois
        end local 3 // io.netty.buffer.ByteBuf frame
        end local 2 // io.netty.buffer.ByteBuf in
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.serialization.ObjectDecoder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/netty/handler/codec/serialization/ObjectDecoder;
            0   10     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0   10     2     in  Lio/netty/buffer/ByteBuf;
            1   10     3  frame  Lio/netty/buffer/ByteBuf;
            4   10     4    ois  Ljava/io/ObjectInputStream;
      Exception table:
        from    to  target  type
           4     5       7  any
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
      in    
}
SourceFile: "ObjectDecoder.java"