public class io.netty.example.qotm.QuoteOfTheMomentClientHandler extends io.netty.channel.SimpleChannelInboundHandler<io.netty.channel.socket.DatagramPacket>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.example.qotm.QuoteOfTheMomentClientHandler
  super_class: io.netty.channel.SimpleChannelInboundHandler
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
         0: .line 23
            aload 0 /* this */
            invokespecial io.netty.channel.SimpleChannelInboundHandler.<init>:()V
            return
        end local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/example/qotm/QuoteOfTheMomentClientHandler;

  public void channelRead0(io.netty.channel.ChannelHandlerContext, io.netty.channel.socket.DatagramPacket);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/socket/DatagramPacket;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.socket.DatagramPacket msg
         0: .line 27
            aload 2 /* msg */
            invokevirtual io.netty.channel.socket.DatagramPacket.content:()Ljava/lang/Object;
            checkcast io.netty.buffer.ByteBuf
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            astore 3 /* response */
        start local 3 // java.lang.String response
         1: .line 28
            aload 3 /* response */
            ldc "QOTM: "
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 4
         2: .line 29
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Quote of the Moment: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* response */
            bipush 6
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         3: .line 30
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
            pop
         4: .line 32
      StackMap locals: java.lang.String
      StackMap stack:
            return
        end local 3 // java.lang.String response
        end local 2 // io.netty.channel.socket.DatagramPacket msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/netty/example/qotm/QuoteOfTheMomentClientHandler;
            0    5     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            0    5     2       msg  Lio/netty/channel/socket/DatagramPacket;
            1    5     3  response  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
      msg   

  public void exceptionCaught(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Throwable cause
         0: .line 36
            aload 2 /* cause */
            invokevirtual java.lang.Throwable.printStackTrace:()V
         1: .line 37
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
            pop
         2: .line 38
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.example.qotm.QuoteOfTheMomentClientHandler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/example/qotm/QuoteOfTheMomentClientHandler;
            0    3     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0    3     2  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      ctx    
      cause  

  public void channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast io.netty.channel.socket.DatagramPacket
            invokevirtual io.netty.example.qotm.QuoteOfTheMomentClientHandler.channelRead0:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/socket/DatagramPacket;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
Signature: Lio/netty/channel/SimpleChannelInboundHandler<Lio/netty/channel/socket/DatagramPacket;>;
SourceFile: "QuoteOfTheMomentClientHandler.java"