public class org.eclipse.jetty.server.AsyncContextEvent extends javax.servlet.AsyncEvent implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.AsyncContextEvent
  super_class: javax.servlet.AsyncEvent
{
  private final org.eclipse.jetty.server.handler.ContextHandler$Context _context;
    descriptor: Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jetty.server.AsyncContextState _asyncContext;
    descriptor: Lorg/eclipse/jetty/server/AsyncContextState;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile org.eclipse.jetty.server.HttpChannelState _state;
    descriptor: Lorg/eclipse/jetty/server/HttpChannelState;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private javax.servlet.ServletContext _dispatchContext;
    descriptor: Ljavax/servlet/ServletContext;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String _dispatchPath;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private volatile org.eclipse.jetty.util.thread.Scheduler$Task _timeoutTask;
    descriptor: Lorg/eclipse/jetty/util/thread/Scheduler$Task;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private java.lang.Throwable _throwable;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.eclipse.jetty.server.handler.ContextHandler$Context, org.eclipse.jetty.server.AsyncContextState, org.eclipse.jetty.server.HttpChannelState, org.eclipse.jetty.server.Request, javax.servlet.ServletRequest, javax.servlet.ServletResponse);
    descriptor: (Lorg/eclipse/jetty/server/handler/ContextHandler$Context;Lorg/eclipse/jetty/server/AsyncContextState;Lorg/eclipse/jetty/server/HttpChannelState;Lorg/eclipse/jetty/server/Request;Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=7
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
        start local 1 // org.eclipse.jetty.server.handler.ContextHandler$Context context
        start local 2 // org.eclipse.jetty.server.AsyncContextState asyncContext
        start local 3 // org.eclipse.jetty.server.HttpChannelState state
        start local 4 // org.eclipse.jetty.server.Request baseRequest
        start local 5 // javax.servlet.ServletRequest request
        start local 6 // javax.servlet.ServletResponse response
         0: .line 43
            aload 0 /* this */
            aconst_null
            aload 5 /* request */
            aload 6 /* response */
            aconst_null
            invokespecial javax.servlet.AsyncEvent.<init>:(Ljavax/servlet/AsyncContext;Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljava/lang/Throwable;)V
         1: .line 44
            aload 0 /* this */
            aload 1 /* context */
            putfield org.eclipse.jetty.server.AsyncContextEvent._context:Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
         2: .line 45
            aload 0 /* this */
            aload 2 /* asyncContext */
            putfield org.eclipse.jetty.server.AsyncContextEvent._asyncContext:Lorg/eclipse/jetty/server/AsyncContextState;
         3: .line 46
            aload 0 /* this */
            aload 3 /* state */
            putfield org.eclipse.jetty.server.AsyncContextEvent._state:Lorg/eclipse/jetty/server/HttpChannelState;
         4: .line 49
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.request_uri"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            ifnonnull 18
         5: .line 55
            aload 4 /* baseRequest */
            ldc "javax.servlet.forward.request_uri"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 7 /* uri */
        start local 7 // java.lang.String uri
         6: .line 56
            aload 7 /* uri */
            ifnull 13
         7: .line 58
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.request_uri"
            aload 7 /* uri */
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         8: .line 59
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.context_path"
            aload 4 /* baseRequest */
            ldc "javax.servlet.forward.context_path"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         9: .line 60
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.servlet_path"
            aload 4 /* baseRequest */
            ldc "javax.servlet.forward.servlet_path"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        10: .line 61
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.path_info"
            aload 4 /* baseRequest */
            ldc "javax.servlet.forward.path_info"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        11: .line 62
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.query_string"
            aload 4 /* baseRequest */
            ldc "javax.servlet.forward.query_string"
            invokevirtual org.eclipse.jetty.server.Request.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        12: .line 63
            goto 18
        13: .line 66
      StackMap locals: org.eclipse.jetty.server.AsyncContextEvent org.eclipse.jetty.server.handler.ContextHandler$Context org.eclipse.jetty.server.AsyncContextState org.eclipse.jetty.server.HttpChannelState org.eclipse.jetty.server.Request javax.servlet.ServletRequest javax.servlet.ServletResponse java.lang.String
      StackMap stack:
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.request_uri"
            aload 4 /* baseRequest */
            invokevirtual org.eclipse.jetty.server.Request.getRequestURI:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        14: .line 67
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.context_path"
            aload 4 /* baseRequest */
            invokevirtual org.eclipse.jetty.server.Request.getContextPath:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        15: .line 68
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.servlet_path"
            aload 4 /* baseRequest */
            invokevirtual org.eclipse.jetty.server.Request.getServletPath:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        16: .line 69
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.path_info"
            aload 4 /* baseRequest */
            invokevirtual org.eclipse.jetty.server.Request.getPathInfo:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        17: .line 70
            aload 4 /* baseRequest */
            ldc "javax.servlet.async.query_string"
            aload 4 /* baseRequest */
            invokevirtual org.eclipse.jetty.server.Request.getQueryString:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.server.Request.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        end local 7 // java.lang.String uri
        18: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 6 // javax.servlet.ServletResponse response
        end local 5 // javax.servlet.ServletRequest request
        end local 4 // org.eclipse.jetty.server.Request baseRequest
        end local 3 // org.eclipse.jetty.server.HttpChannelState state
        end local 2 // org.eclipse.jetty.server.AsyncContextState asyncContext
        end local 1 // org.eclipse.jetty.server.handler.ContextHandler$Context context
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   19     0          this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            0   19     1       context  Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
            0   19     2  asyncContext  Lorg/eclipse/jetty/server/AsyncContextState;
            0   19     3         state  Lorg/eclipse/jetty/server/HttpChannelState;
            0   19     4   baseRequest  Lorg/eclipse/jetty/server/Request;
            0   19     5       request  Ljavax/servlet/ServletRequest;
            0   19     6      response  Ljavax/servlet/ServletResponse;
            6   18     7           uri  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      context       
      asyncContext  
      state         
      baseRequest   
      request       
      response      

  public javax.servlet.ServletContext getSuspendedContext();
    descriptor: ()Ljavax/servlet/ServletContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 77
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._context:Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public org.eclipse.jetty.server.handler.ContextHandler$Context getContext();
    descriptor: ()Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 82
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._context:Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public javax.servlet.ServletContext getDispatchContext();
    descriptor: ()Ljavax/servlet/ServletContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 87
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._dispatchContext:Ljavax/servlet/ServletContext;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public javax.servlet.ServletContext getServletContext();
    descriptor: ()Ljavax/servlet/ServletContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 92
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._dispatchContext:Ljavax/servlet/ServletContext;
            ifnonnull 1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._context:Lorg/eclipse/jetty/server/handler/ContextHandler$Context;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._dispatchContext:Ljavax/servlet/ServletContext;
      StackMap locals:
      StackMap stack: javax.servlet.ServletContext
         2: areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 100
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._dispatchPath:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public void setTimeoutTask(org.eclipse.jetty.util.thread.Scheduler$Task);
    descriptor: (Lorg/eclipse/jetty/util/thread/Scheduler$Task;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
        start local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
         0: .line 105
            aload 0 /* this */
            aload 1 /* task */
            putfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
         1: .line 106
            return
        end local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            0    2     1  task  Lorg/eclipse/jetty/util/thread/Scheduler$Task;
    MethodParameters:
      Name  Flags
      task  

  public boolean hasTimeoutTask();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public void cancelTimeoutTask();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 115
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
            astore 1 /* task */
        start local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
         1: .line 116
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
         2: .line 117
            aload 1 /* task */
            ifnull 4
         3: .line 118
            aload 1 /* task */
            invokeinterface org.eclipse.jetty.util.thread.Scheduler$Task.cancel:()Z
            pop
         4: .line 119
      StackMap locals: org.eclipse.jetty.util.thread.Scheduler$Task
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            1    5     1  task  Lorg/eclipse/jetty/util/thread/Scheduler$Task;

  public javax.servlet.AsyncContext getAsyncContext();
    descriptor: ()Ljavax/servlet/AsyncContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 124
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._asyncContext:Lorg/eclipse/jetty/server/AsyncContextState;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public java.lang.Throwable getThrowable();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 130
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._throwable:Ljava/lang/Throwable;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public void setDispatchContext(javax.servlet.ServletContext);
    descriptor: (Ljavax/servlet/ServletContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
        start local 1 // javax.servlet.ServletContext context
         0: .line 135
            aload 0 /* this */
            aload 1 /* context */
            putfield org.eclipse.jetty.server.AsyncContextEvent._dispatchContext:Ljavax/servlet/ServletContext;
         1: .line 136
            return
        end local 1 // javax.servlet.ServletContext context
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            0    2     1  context  Ljavax/servlet/ServletContext;
    MethodParameters:
         Name  Flags
      context  

  public void setDispatchPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
        start local 1 // java.lang.String path
         0: .line 143
            aload 0 /* this */
            aload 1 /* path */
            putfield org.eclipse.jetty.server.AsyncContextEvent._dispatchPath:Ljava/lang/String;
         1: .line 144
            return
        end local 1 // java.lang.String path
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            0    2     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public void completed();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 148
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
         1: .line 149
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._asyncContext:Lorg/eclipse/jetty/server/AsyncContextState;
            invokevirtual org.eclipse.jetty.server.AsyncContextState.reset:()V
         2: .line 150
            return
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public org.eclipse.jetty.server.HttpChannelState getHttpChannelState();
    descriptor: ()Lorg/eclipse/jetty/server/HttpChannelState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 154
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._state:Lorg/eclipse/jetty/server/HttpChannelState;
            areturn
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 160
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
            astore 1 /* task */
        start local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
         1: .line 161
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.server.AsyncContextEvent._timeoutTask:Lorg/eclipse/jetty/util/thread/Scheduler$Task;
         2: .line 162
            aload 1 /* task */
            ifnull 4
         3: .line 163
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._state:Lorg/eclipse/jetty/server/HttpChannelState;
            invokevirtual org.eclipse.jetty.server.HttpChannelState.getHttpChannel:()Lorg/eclipse/jetty/server/HttpChannel;
            aload 0 /* this */
            invokedynamic run(Lorg/eclipse/jetty/server/AsyncContextEvent;)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  org/eclipse/jetty/server/AsyncContextEvent.lambda$0()V (7)
                  ()V
            invokevirtual org.eclipse.jetty.server.HttpChannel.execute:(Ljava/lang/Runnable;)V
         4: .line 164
      StackMap locals: org.eclipse.jetty.util.thread.Scheduler$Task
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.util.thread.Scheduler$Task task
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            1    5     1  task  Lorg/eclipse/jetty/util/thread/Scheduler$Task;

  public void addThrowable(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
        start local 1 // java.lang.Throwable e
         0: .line 168
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._throwable:Ljava/lang/Throwable;
            ifnonnull 2
         1: .line 169
            aload 0 /* this */
            aload 1 /* e */
            putfield org.eclipse.jetty.server.AsyncContextEvent._throwable:Ljava/lang/Throwable;
            goto 4
         2: .line 170
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._throwable:Ljava/lang/Throwable;
            if_acmpeq 4
         3: .line 171
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._throwable:Ljava/lang/Throwable;
            aload 1 /* e */
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
         4: .line 172
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable e
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
            0    5     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  private void lambda$0();
    descriptor: ()V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.AsyncContextEvent this
         0: .line 163
            aload 0 /* this */
            getfield org.eclipse.jetty.server.AsyncContextEvent._state:Lorg/eclipse/jetty/server/HttpChannelState;
            invokevirtual org.eclipse.jetty.server.HttpChannelState.onTimeout:()V
            return
        end local 0 // org.eclipse.jetty.server.AsyncContextEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/AsyncContextEvent;
}
SourceFile: "AsyncContextEvent.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public Context = org.eclipse.jetty.server.handler.ContextHandler$Context of org.eclipse.jetty.server.handler.ContextHandler
  public abstract Task = org.eclipse.jetty.util.thread.Scheduler$Task of org.eclipse.jetty.util.thread.Scheduler