public class org.springframework.http.server.ServletServerHttpAsyncRequestControl implements org.springframework.http.server.ServerHttpAsyncRequestControl, javax.servlet.AsyncListener
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.http.server.ServletServerHttpAsyncRequestControl
  super_class: java.lang.Object
{
  private static final long NO_TIMEOUT_VALUE;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -9223372036854775808

  private final org.springframework.http.server.ServletServerHttpRequest request;
    descriptor: Lorg/springframework/http/server/ServletServerHttpRequest;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.springframework.http.server.ServletServerHttpResponse response;
    descriptor: Lorg/springframework/http/server/ServletServerHttpResponse;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private javax.servlet.AsyncContext asyncContext;
    descriptor: Ljavax/servlet/AsyncContext;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private java.util.concurrent.atomic.AtomicBoolean asyncCompleted;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.springframework.http.server.ServletServerHttpRequest, org.springframework.http.server.ServletServerHttpResponse);
    descriptor: (Lorg/springframework/http/server/ServletServerHttpRequest;Lorg/springframework/http/server/ServletServerHttpResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 60
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tThe method isAsyncSupported() is undefined for the type HttpServletRequest\n\tThe method isAsyncStarted() is undefined for the type HttpServletRequest\n\tThe method startAsync(HttpServletRequest, HttpServletResponse) is undefined for the type HttpServletRequest\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
    MethodParameters:
          Name  Flags
      request   
      response  

  public boolean isStarted();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 73
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method isAsyncStarted() is undefined for the type HttpServletRequest\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;

  public boolean isCompleted();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 78
            aload 0 /* this */
            getfield org.springframework.http.server.ServletServerHttpAsyncRequestControl.asyncCompleted:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ireturn
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;

  public void start();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 83
            aload 0 /* this */
            ldc -9223372036854775808
            invokevirtual org.springframework.http.server.ServletServerHttpAsyncRequestControl.start:(J)V
         1: .line 84
            return
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;

  public void start(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 96
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method startAsync(HttpServletRequest, HttpServletResponse) is undefined for the type HttpServletRequest\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
    MethodParameters:
         Name  Flags
      timeout  

  public void complete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
         0: .line 106
            aload 0 /* this */
            getfield org.springframework.http.server.ServletServerHttpAsyncRequestControl.asyncContext:Ljavax/servlet/AsyncContext;
            ifnull 2
            aload 0 /* this */
            invokevirtual org.springframework.http.server.ServletServerHttpAsyncRequestControl.isStarted:()Z
            ifeq 2
            aload 0 /* this */
            invokevirtual org.springframework.http.server.ServletServerHttpAsyncRequestControl.isCompleted:()Z
            ifne 2
         1: .line 107
            aload 0 /* this */
            getfield org.springframework.http.server.ServletServerHttpAsyncRequestControl.asyncContext:Ljavax/servlet/AsyncContext;
            invokeinterface javax.servlet.AsyncContext.complete:()V
         2: .line 109
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;

  public void onComplete(javax.servlet.AsyncEvent);
    descriptor: (Ljavax/servlet/AsyncEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
        start local 1 // javax.servlet.AsyncEvent event
         0: .line 118
            aload 0 /* this */
            aconst_null
            putfield org.springframework.http.server.ServletServerHttpAsyncRequestControl.asyncContext:Ljavax/servlet/AsyncContext;
         1: .line 119
            aload 0 /* this */
            getfield org.springframework.http.server.ServletServerHttpAsyncRequestControl.asyncCompleted:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         2: .line 120
            return
        end local 1 // javax.servlet.AsyncEvent event
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
            0    3     1  event  Ljavax/servlet/AsyncEvent;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      event  

  public void onStartAsync(javax.servlet.AsyncEvent);
    descriptor: (Ljavax/servlet/AsyncEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
        start local 1 // javax.servlet.AsyncEvent event
         0: .line 124
            return
        end local 1 // javax.servlet.AsyncEvent event
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
            0    1     1  event  Ljavax/servlet/AsyncEvent;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      event  

  public void onError(javax.servlet.AsyncEvent);
    descriptor: (Ljavax/servlet/AsyncEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
        start local 1 // javax.servlet.AsyncEvent event
         0: .line 128
            return
        end local 1 // javax.servlet.AsyncEvent event
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
            0    1     1  event  Ljavax/servlet/AsyncEvent;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      event  

  public void onTimeout(javax.servlet.AsyncEvent);
    descriptor: (Ljavax/servlet/AsyncEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
        start local 1 // javax.servlet.AsyncEvent event
         0: .line 132
            return
        end local 1 // javax.servlet.AsyncEvent event
        end local 0 // org.springframework.http.server.ServletServerHttpAsyncRequestControl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/http/server/ServletServerHttpAsyncRequestControl;
            0    1     1  event  Ljavax/servlet/AsyncEvent;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      event  
}
SourceFile: "ServletServerHttpAsyncRequestControl.java"