public class io.netty.handler.timeout.ReadTimeoutHandler extends io.netty.handler.timeout.IdleStateHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.timeout.ReadTimeoutHandler
  super_class: io.netty.handler.timeout.IdleStateHandler
{
  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 62
            ldc Lio/netty/handler/timeout/ReadTimeoutHandler;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic io.netty.handler.timeout.ReadTimeoutHandler.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
        start local 1 // int timeoutSeconds
         0: .line 72
            aload 0 /* this */
            iload 1 /* timeoutSeconds */
            i2l
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokespecial io.netty.handler.timeout.ReadTimeoutHandler.<init>:(JLjava/util/concurrent/TimeUnit;)V
         1: .line 73
            return
        end local 1 // int timeoutSeconds
        end local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/netty/handler/timeout/ReadTimeoutHandler;
            0    2     1  timeoutSeconds  I
    MethodParameters:
                Name  Flags
      timeoutSeconds  

  public void <init>(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=3
        start local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 84
            aload 0 /* this */
            lload 1 /* timeout */
            lconst_0
            lconst_0
            aload 3 /* unit */
            invokespecial io.netty.handler.timeout.IdleStateHandler.<init>:(JJJLjava/util/concurrent/TimeUnit;)V
         1: .line 85
            return
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/timeout/ReadTimeoutHandler;
            0    2     1  timeout  J
            0    2     3     unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  protected final void channelIdle(io.netty.channel.ChannelHandlerContext, io.netty.handler.timeout.IdleStateEvent);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/timeout/IdleStateEvent;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.timeout.IdleStateEvent evt
         0: .line 89
            getstatic io.netty.handler.timeout.ReadTimeoutHandler.$assertionsDisabled:Z
            ifne 1
            aload 2 /* evt */
            invokevirtual io.netty.handler.timeout.IdleStateEvent.state:()Lio/netty/handler/timeout/IdleState;
            getstatic io.netty.handler.timeout.IdleState.READER_IDLE:Lio/netty/handler/timeout/IdleState;
            if_acmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            invokevirtual io.netty.handler.timeout.ReadTimeoutHandler.readTimedOut:(Lio/netty/channel/ChannelHandlerContext;)V
         2: .line 91
            return
        end local 2 // io.netty.handler.timeout.IdleStateEvent evt
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/timeout/ReadTimeoutHandler;
            0    3     1   ctx  Lio/netty/channel/ChannelHandlerContext;
            0    3     2   evt  Lio/netty/handler/timeout/IdleStateEvent;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
      evt   

  protected void readTimedOut(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 97
            aload 0 /* this */
            getfield io.netty.handler.timeout.ReadTimeoutHandler.closed:Z
            ifne 4
         1: .line 98
            aload 1 /* ctx */
            getstatic io.netty.handler.timeout.ReadTimeoutException.INSTANCE:Lio/netty/handler/timeout/ReadTimeoutException;
            invokeinterface io.netty.channel.ChannelHandlerContext.fireExceptionCaught:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelHandlerContext;
            pop
         2: .line 99
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
            pop
         3: .line 100
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.timeout.ReadTimeoutHandler.closed:Z
         4: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.timeout.ReadTimeoutHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/netty/handler/timeout/ReadTimeoutHandler;
            0    5     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
}
SourceFile: "ReadTimeoutHandler.java"