class jdk.incubator.http.MultiExchange<U, T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.incubator.http.MultiExchange
  super_class: java.lang.Object
{
  private final jdk.incubator.http.HttpRequest userRequest;
    descriptor: Ljdk/incubator/http/HttpRequest;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.incubator.http.HttpRequestImpl request;
    descriptor: Ljdk/incubator/http/HttpRequestImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final java.security.AccessControlContext acc;
    descriptor: Ljava/security/AccessControlContext;
    flags: (0x0010) ACC_FINAL

  final jdk.incubator.http.HttpClientImpl client;
    descriptor: Ljdk/incubator/http/HttpClientImpl;
    flags: (0x0010) ACC_FINAL

  final jdk.incubator.http.HttpResponse$BodyHandler<T> responseHandler;
    descriptor: Ljdk/incubator/http/HttpResponse$BodyHandler;
    flags: (0x0010) ACC_FINAL
    Signature: Ljdk/incubator/http/HttpResponse$BodyHandler<TT;>;

  final jdk.incubator.http.ExecutorWrapper execWrapper;
    descriptor: Ljdk/incubator/http/ExecutorWrapper;
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.Executor executor;
    descriptor: Ljava/util/concurrent/Executor;
    flags: (0x0010) ACC_FINAL

  final jdk.incubator.http.HttpResponse$MultiProcessor<U, T> multiResponseHandler;
    descriptor: Ljdk/incubator/http/HttpResponse$MultiProcessor;
    flags: (0x0010) ACC_FINAL
    Signature: Ljdk/incubator/http/HttpResponse$MultiProcessor<TU;TT;>;

  jdk.incubator.http.HttpRequestImpl currentreq;
    descriptor: Ljdk/incubator/http/HttpRequestImpl;
    flags: (0x0000) 

  jdk.incubator.http.Exchange<T> exchange;
    descriptor: Ljdk/incubator/http/Exchange;
    flags: (0x0000) 
    Signature: Ljdk/incubator/http/Exchange<TT;>;

  jdk.incubator.http.Exchange<T> previous;
    descriptor: Ljdk/incubator/http/Exchange;
    flags: (0x0000) 
    Signature: Ljdk/incubator/http/Exchange<TT;>;

  int attempts;
    descriptor: I
    flags: (0x0000) 

  static final int DEFAULT_MAX_ATTEMPTS;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  static final int max_attempts;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private final java.util.List<jdk.incubator.http.HeaderFilter> filters;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljdk/incubator/http/HeaderFilter;>;

  jdk.incubator.http.MultiExchange<U, T>.TimedEvent timedEvent;
    descriptor: Ljdk/incubator/http/MultiExchange$TimedEvent;
    flags: (0x0000) 
    Signature: Ljdk/incubator/http/MultiExchange<TU;TT;>.TimedEvent;

  volatile boolean cancelled;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  final jdk.incubator.http.PushGroup<U, T> pushGroup;
    descriptor: Ljdk/incubator/http/PushGroup;
    flags: (0x0010) ACC_FINAL
    Signature: Ljdk/incubator/http/PushGroup<TU;TT;>;

  volatile jdk.incubator.http.AuthenticationFilter$AuthInfo serverauth;
    descriptor: Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
    flags: (0x0040) ACC_VOLATILE

  volatile jdk.incubator.http.AuthenticationFilter$AuthInfo proxyauth;
    descriptor: Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
    flags: (0x0040) ACC_VOLATILE

  volatile int numberOfRedirects;
    descriptor: I
    flags: (0x0040) ACC_VOLATILE

  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=2, locals=0, args_size=0
         0: .line 54
            ldc Ljdk/incubator/http/MultiExchange;
            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 jdk.incubator.http.MultiExchange.$assertionsDisabled:Z
         3: .line 73
            ldc "jdk.httpclient.redirects.retrylimit"
            iconst_5
         4: .line 72
            invokestatic jdk.incubator.http.internal.common.Utils.getIntegerNetProperty:(Ljava/lang/String;I)I
            putstatic jdk.incubator.http.MultiExchange.max_attempts:I
         5: .line 74
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(jdk.incubator.http.HttpRequest, jdk.incubator.http.HttpClientImpl, jdk.incubator.http.HttpResponse$BodyHandler<T>);
    descriptor: (Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpResponse$BodyHandler;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.HttpRequest req
        start local 2 // jdk.incubator.http.HttpClientImpl client
        start local 3 // jdk.incubator.http.HttpResponse$BodyHandler responseHandler
         0: .line 94
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 0 /* this */
            iconst_0
            putfield jdk.incubator.http.MultiExchange.numberOfRedirects:I
         2: .line 97
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.previous:Ljdk/incubator/http/Exchange;
         3: .line 98
            aload 0 /* this */
            aload 1 /* req */
            putfield jdk.incubator.http.MultiExchange.userRequest:Ljdk/incubator/http/HttpRequest;
         4: .line 99
            aload 0 /* this */
            new jdk.incubator.http.HttpRequestImpl
            dup
            aload 1 /* req */
            invokespecial jdk.incubator.http.HttpRequestImpl.<init>:(Ljdk/incubator/http/HttpRequest;)V
            putfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
         5: .line 100
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            putfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
         6: .line 101
            aload 0 /* this */
            iconst_0
            putfield jdk.incubator.http.MultiExchange.attempts:I
         7: .line 102
            aload 0 /* this */
            aload 2 /* client */
            putfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
         8: .line 103
            aload 0 /* this */
            aload 2 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.filterChain:()Ljava/util/List;
            putfield jdk.incubator.http.MultiExchange.filters:Ljava/util/List;
         9: .line 104
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            ifnull 12
        10: .line 105
            aload 0 /* this */
            invokestatic java.security.AccessController.getContext:()Ljava/security/AccessControlContext;
            putfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
        11: .line 106
            goto 13
        12: .line 107
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.HttpRequest jdk.incubator.http.HttpClientImpl jdk.incubator.http.HttpResponse$BodyHandler
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
        13: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new jdk.incubator.http.ExecutorWrapper
            dup
            aload 2 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.executor:()Ljava/util/concurrent/Executor;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
            invokespecial jdk.incubator.http.ExecutorWrapper.<init>:(Ljava/util/concurrent/Executor;Ljava/security/AccessControlContext;)V
            putfield jdk.incubator.http.MultiExchange.execWrapper:Ljdk/incubator/http/ExecutorWrapper;
        14: .line 110
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.execWrapper:Ljdk/incubator/http/ExecutorWrapper;
            invokevirtual jdk.incubator.http.ExecutorWrapper.executor:()Ljava/util/concurrent/Executor;
            putfield jdk.incubator.http.MultiExchange.executor:Ljava/util/concurrent/Executor;
        15: .line 111
            aload 0 /* this */
            aload 3 /* responseHandler */
            putfield jdk.incubator.http.MultiExchange.responseHandler:Ljdk/incubator/http/HttpResponse$BodyHandler;
        16: .line 112
            aload 0 /* this */
            new jdk.incubator.http.Exchange
            dup
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            aload 0 /* this */
            invokespecial jdk.incubator.http.Exchange.<init>:(Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;)V
            putfield jdk.incubator.http.MultiExchange.exchange:Ljdk/incubator/http/Exchange;
        17: .line 113
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.multiResponseHandler:Ljdk/incubator/http/HttpResponse$MultiProcessor;
        18: .line 114
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
        19: .line 115
            return
        end local 3 // jdk.incubator.http.HttpResponse$BodyHandler responseHandler
        end local 2 // jdk.incubator.http.HttpClientImpl client
        end local 1 // jdk.incubator.http.HttpRequest req
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   20     0             this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0   20     1              req  Ljdk/incubator/http/HttpRequest;
            0   20     2           client  Ljdk/incubator/http/HttpClientImpl;
            0   20     3  responseHandler  Ljdk/incubator/http/HttpResponse$BodyHandler<TT;>;
    Signature: (Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpResponse$BodyHandler<TT;>;)V
    MethodParameters:
                 Name  Flags
      req              
      client           
      responseHandler  

  void <init>(jdk.incubator.http.HttpRequest, jdk.incubator.http.HttpClientImpl, jdk.incubator.http.HttpResponse$MultiProcessor<U, T>);
    descriptor: (Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpResponse$MultiProcessor;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.HttpRequest req
        start local 2 // jdk.incubator.http.HttpClientImpl client
        start local 3 // jdk.incubator.http.HttpResponse$MultiProcessor multiResponseHandler
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 0 /* this */
            iconst_0
            putfield jdk.incubator.http.MultiExchange.numberOfRedirects:I
         2: .line 123
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.previous:Ljdk/incubator/http/Exchange;
         3: .line 124
            aload 0 /* this */
            aload 1 /* req */
            putfield jdk.incubator.http.MultiExchange.userRequest:Ljdk/incubator/http/HttpRequest;
         4: .line 125
            aload 0 /* this */
            new jdk.incubator.http.HttpRequestImpl
            dup
            aload 1 /* req */
            invokespecial jdk.incubator.http.HttpRequestImpl.<init>:(Ljdk/incubator/http/HttpRequest;)V
            putfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
         5: .line 126
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            putfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
         6: .line 127
            aload 0 /* this */
            iconst_0
            putfield jdk.incubator.http.MultiExchange.attempts:I
         7: .line 128
            aload 0 /* this */
            aload 2 /* client */
            putfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
         8: .line 129
            aload 0 /* this */
            aload 2 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.filterChain:()Ljava/util/List;
            putfield jdk.incubator.http.MultiExchange.filters:Ljava/util/List;
         9: .line 130
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            ifnull 12
        10: .line 131
            aload 0 /* this */
            invokestatic java.security.AccessController.getContext:()Ljava/security/AccessControlContext;
            putfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
        11: .line 132
            goto 13
        12: .line 133
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.HttpRequest jdk.incubator.http.HttpClientImpl jdk.incubator.http.HttpResponse$MultiProcessor
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
        13: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new jdk.incubator.http.ExecutorWrapper
            dup
            aload 2 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.executor:()Ljava/util/concurrent/Executor;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
            invokespecial jdk.incubator.http.ExecutorWrapper.<init>:(Ljava/util/concurrent/Executor;Ljava/security/AccessControlContext;)V
            putfield jdk.incubator.http.MultiExchange.execWrapper:Ljdk/incubator/http/ExecutorWrapper;
        14: .line 136
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.execWrapper:Ljdk/incubator/http/ExecutorWrapper;
            invokevirtual jdk.incubator.http.ExecutorWrapper.executor:()Ljava/util/concurrent/Executor;
            putfield jdk.incubator.http.MultiExchange.executor:Ljava/util/concurrent/Executor;
        15: .line 137
            aload 0 /* this */
            aload 3 /* multiResponseHandler */
            putfield jdk.incubator.http.MultiExchange.multiResponseHandler:Ljdk/incubator/http/HttpResponse$MultiProcessor;
        16: .line 138
            aload 0 /* this */
            new jdk.incubator.http.PushGroup
            dup
            aload 3 /* multiResponseHandler */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            invokespecial jdk.incubator.http.PushGroup.<init>:(Ljdk/incubator/http/HttpResponse$MultiProcessor;Ljdk/incubator/http/HttpRequestImpl;)V
            putfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
        17: .line 139
            aload 0 /* this */
            new jdk.incubator.http.Exchange
            dup
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            aload 0 /* this */
            invokespecial jdk.incubator.http.Exchange.<init>:(Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;)V
            putfield jdk.incubator.http.MultiExchange.exchange:Ljdk/incubator/http/Exchange;
        18: .line 140
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            invokevirtual jdk.incubator.http.PushGroup.mainResponseHandler:()Ljdk/incubator/http/HttpResponse$BodyHandler;
            putfield jdk.incubator.http.MultiExchange.responseHandler:Ljdk/incubator/http/HttpResponse$BodyHandler;
        19: .line 141
            return
        end local 3 // jdk.incubator.http.HttpResponse$MultiProcessor multiResponseHandler
        end local 2 // jdk.incubator.http.HttpClientImpl client
        end local 1 // jdk.incubator.http.HttpRequest req
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   20     0                  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0   20     1                   req  Ljdk/incubator/http/HttpRequest;
            0   20     2                client  Ljdk/incubator/http/HttpClientImpl;
            0   20     3  multiResponseHandler  Ljdk/incubator/http/HttpResponse$MultiProcessor<TU;TT;>;
    Signature: (Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpResponse$MultiProcessor<TU;TT;>;)V
    MethodParameters:
                      Name  Flags
      req                   
      client                
      multiResponseHandler  

  public jdk.incubator.http.HttpResponseImpl<T> response();
    descriptor: ()Ljdk/incubator/http/HttpResponseImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 144
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            astore 1 /* r */
        start local 1 // jdk.incubator.http.HttpRequestImpl r
         1: .line 145
            aload 1 /* r */
            invokevirtual jdk.incubator.http.HttpRequestImpl.duration:()Ljava/time/Duration;
            ifnull 24
         2: .line 146
            aload 0 /* this */
            new jdk.incubator.http.MultiExchange$TimedEvent
            dup
            aload 0 /* this */
            aload 1 /* r */
            invokevirtual jdk.incubator.http.HttpRequestImpl.duration:()Ljava/time/Duration;
            invokespecial jdk.incubator.http.MultiExchange$TimedEvent.<init>:(Ljdk/incubator/http/MultiExchange;Ljava/time/Duration;)V
            putfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
         3: .line 147
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
            invokevirtual jdk.incubator.http.HttpClientImpl.registerTimer:(Ljdk/incubator/http/TimeoutEvent;)V
         4: .line 149
            goto 24
         5: .line 151
      StackMap locals: jdk.incubator.http.HttpRequestImpl
      StackMap stack:
            aload 0 /* this */
            dup
            getfield jdk.incubator.http.MultiExchange.attempts:I
            iconst_1
            iadd
            putfield jdk.incubator.http.MultiExchange.attempts:I
         6: .line 152
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.getExchange:()Ljdk/incubator/http/Exchange;
            astore 2 /* currExchange */
        start local 2 // jdk.incubator.http.Exchange currExchange
         7: .line 153
            aload 0 /* this */
            aload 1 /* r */
            invokevirtual jdk.incubator.http.MultiExchange.requestFilters:(Ljdk/incubator/http/HttpRequestImpl;)V
         8: .line 154
            aload 2 /* currExchange */
            invokevirtual jdk.incubator.http.Exchange.response:()Ljdk/incubator/http/Response;
            astore 3 /* response */
        start local 3 // jdk.incubator.http.Response response
         9: .line 155
            aload 0 /* this */
            aload 3 /* response */
            invokevirtual jdk.incubator.http.MultiExchange.responseFilters:(Ljdk/incubator/http/Response;)Ljdk/incubator/http/HttpRequestImpl;
            astore 4 /* newreq */
        start local 4 // jdk.incubator.http.HttpRequestImpl newreq
        10: .line 156
            aload 4 /* newreq */
            ifnonnull 17
        11: .line 157
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.attempts:I
            iconst_1
            if_icmple 13
        12: .line 158
            new java.lang.StringBuilder
            dup
            ldc "Succeeded on attempt: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.attempts:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logError:(Ljava/lang/String;[Ljava/lang/Object;)V
        13: .line 160
      StackMap locals: jdk.incubator.http.Exchange jdk.incubator.http.Response jdk.incubator.http.HttpRequestImpl
      StackMap stack:
            aload 2 /* currExchange */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.responseHandler:Ljdk/incubator/http/HttpResponse$BodyHandler;
            invokevirtual jdk.incubator.http.Exchange.readBody:(Ljdk/incubator/http/HttpResponse$BodyHandler;)Ljava/lang/Object;
            astore 5 /* body */
        start local 5 // java.lang.Object body
        14: .line 161
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.cancelTimer:()V
        15: .line 162
            new jdk.incubator.http.HttpResponseImpl
            dup
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.userRequest:Ljdk/incubator/http/HttpRequest;
            aload 3 /* response */
            aload 5 /* body */
            aload 2 /* currExchange */
            invokespecial jdk.incubator.http.HttpResponseImpl.<init>:(Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/Response;Ljava/lang/Object;Ljdk/incubator/http/Exchange;)V
        16: areturn
        end local 5 // java.lang.Object body
        17: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new jdk.incubator.http.Exchange
            dup
            aload 4 /* newreq */
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
            invokespecial jdk.incubator.http.Exchange.<init>:(Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;Ljava/security/AccessControlContext;)V
            invokevirtual jdk.incubator.http.MultiExchange.setExchange:(Ljdk/incubator/http/Exchange;)V
        18: .line 166
            aload 4 /* newreq */
            astore 1 /* r */
        end local 4 // jdk.incubator.http.HttpRequestImpl newreq
        end local 3 // jdk.incubator.http.Response response
        end local 2 // jdk.incubator.http.Exchange currExchange
        19: .line 167
            goto 24
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.HttpRequestImpl
      StackMap stack: java.io.IOException
        20: astore 2 /* e */
        start local 2 // java.io.IOException e
        21: .line 168
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.cancelled:Z
            ifeq 23
        22: .line 169
            new jdk.incubator.http.HttpTimeoutException
            dup
            ldc "Request timed out"
            invokespecial jdk.incubator.http.HttpTimeoutException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 171
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 2 /* e */
            athrow
        end local 2 // java.io.IOException e
        24: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.attempts:I
            getstatic jdk.incubator.http.MultiExchange.max_attempts:I
            if_icmplt 5
        25: .line 174
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.cancelTimer:()V
        26: .line 175
            new java.io.IOException
            dup
            ldc "Retry limit exceeded"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // jdk.incubator.http.HttpRequestImpl r
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   27     0          this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            1   27     1             r  Ljdk/incubator/http/HttpRequestImpl;
            7   19     2  currExchange  Ljdk/incubator/http/Exchange<TT;>;
            9   19     3      response  Ljdk/incubator/http/Response;
           10   19     4        newreq  Ljdk/incubator/http/HttpRequestImpl;
           14   17     5          body  TT;
           21   24     2             e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5    16      20  Class java.io.IOException
          17    19      20  Class java.io.IOException
    Exceptions:
      throws java.io.IOException, java.lang.InterruptedException
    Signature: ()Ljdk/incubator/http/HttpResponseImpl<TT;>;

  java.util.concurrent.CompletableFuture<java.lang.Void> multiCompletionCF();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 179
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            invokevirtual jdk.incubator.http.PushGroup.groupResult:()Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
    Signature: ()Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;

  private synchronized jdk.incubator.http.Exchange<T> getExchange();
    descriptor: ()Ljdk/incubator/http/Exchange;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 183
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.exchange:Ljdk/incubator/http/Exchange;
            areturn
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
    Signature: ()Ljdk/incubator/http/Exchange<TT;>;

  jdk.incubator.http.HttpClientImpl client();
    descriptor: ()Ljdk/incubator/http/HttpClientImpl;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 187
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            areturn
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;

  jdk.incubator.http.HttpClient$Redirect followRedirects();
    descriptor: ()Ljdk/incubator/http/HttpClient$Redirect;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 191
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            invokevirtual jdk.incubator.http.HttpClientImpl.followRedirects:()Ljdk/incubator/http/HttpClient$Redirect;
            areturn
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;

  jdk.incubator.http.HttpClient$Version version();
    descriptor: ()Ljdk/incubator/http/HttpClient$Version;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 195
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.request:Ljdk/incubator/http/HttpRequestImpl;
            invokevirtual jdk.incubator.http.HttpRequestImpl.version:()Ljava/util/Optional;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            invokevirtual jdk.incubator.http.HttpClientImpl.version:()Ljdk/incubator/http/HttpClient$Version;
            invokevirtual java.util.Optional.orElse:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast jdk.incubator.http.HttpClient$Version
            areturn
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;

  private synchronized void setExchange(jdk.incubator.http.Exchange<T>);
    descriptor: (Ljdk/incubator/http/Exchange;)V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.Exchange exchange
         0: .line 199
            aload 0 /* this */
            aload 1 /* exchange */
            putfield jdk.incubator.http.MultiExchange.exchange:Ljdk/incubator/http/Exchange;
         1: .line 200
            return
        end local 1 // jdk.incubator.http.Exchange exchange
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    2     1  exchange  Ljdk/incubator/http/Exchange<TT;>;
    Signature: (Ljdk/incubator/http/Exchange<TT;>;)V
    MethodParameters:
          Name  Flags
      exchange  

  private void cancelTimer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 203
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
            ifnull 2
         1: .line 204
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
            invokevirtual jdk.incubator.http.HttpClientImpl.cancelTimer:(Ljdk/incubator/http/TimeoutEvent;)V
         2: .line 206
      StackMap locals:
      StackMap stack:
            return
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;

  private void requestFilters(jdk.incubator.http.HttpRequestImpl);
    descriptor: (Ljdk/incubator/http/HttpRequestImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.HttpRequestImpl r
         0: .line 209
            ldc "Applying request filters"
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         1: .line 210
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.filters:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.HttpRequestImpl top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.incubator.http.HeaderFilter
            astore 2 /* filter */
        start local 2 // jdk.incubator.http.HeaderFilter filter
         3: .line 211
            ldc "Applying {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* filter */
            aastore
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 212
            aload 2 /* filter */
            aload 1 /* r */
            aload 0 /* this */
            invokeinterface jdk.incubator.http.HeaderFilter.request:(Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;)V
        end local 2 // jdk.incubator.http.HeaderFilter filter
         5: .line 210
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 214
            ldc "All filters applied"
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 215
            return
        end local 1 // jdk.incubator.http.HttpRequestImpl r
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    8     1       r  Ljdk/incubator/http/HttpRequestImpl;
            3    5     2  filter  Ljdk/incubator/http/HeaderFilter;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      r     

  private jdk.incubator.http.HttpRequestImpl responseFilters(jdk.incubator.http.Response);
    descriptor: (Ljdk/incubator/http/Response;)Ljdk/incubator/http/HttpRequestImpl;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.Response response
         0: .line 219
            ldc "Applying response filters"
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         1: .line 220
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.filters:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.Response top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.incubator.http.HeaderFilter
            astore 2 /* filter */
        start local 2 // jdk.incubator.http.HeaderFilter filter
         3: .line 221
            ldc "Applying {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* filter */
            aastore
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 222
            aload 2 /* filter */
            aload 1 /* response */
            invokeinterface jdk.incubator.http.HeaderFilter.response:(Ljdk/incubator/http/Response;)Ljdk/incubator/http/HttpRequestImpl;
            astore 4 /* newreq */
        start local 4 // jdk.incubator.http.HttpRequestImpl newreq
         5: .line 223
            aload 4 /* newreq */
            ifnull 8
         6: .line 224
            ldc "New request: stopping filters"
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 225
            aload 4 /* newreq */
            areturn
        end local 4 // jdk.incubator.http.HttpRequestImpl newreq
        end local 2 // jdk.incubator.http.HeaderFilter filter
         8: .line 220
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 228
            ldc "All filters applied"
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logTrace:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 229
            aconst_null
            areturn
        end local 1 // jdk.incubator.http.Response response
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0   11     1  response  Ljdk/incubator/http/Response;
            3    8     2    filter  Ljdk/incubator/http/HeaderFilter;
            5    8     4    newreq  Ljdk/incubator/http/HttpRequestImpl;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      response  

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 233
            aload 0 /* this */
            iconst_1
            putfield jdk.incubator.http.MultiExchange.cancelled:Z
         1: .line 234
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.getExchange:()Ljdk/incubator/http/Exchange;
            invokevirtual jdk.incubator.http.Exchange.cancel:()V
         2: .line 235
            return
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;

  public void cancel(java.io.IOException);
    descriptor: (Ljava/io/IOException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // java.io.IOException cause
         0: .line 238
            aload 0 /* this */
            iconst_1
            putfield jdk.incubator.http.MultiExchange.cancelled:Z
         1: .line 239
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.getExchange:()Ljdk/incubator/http/Exchange;
            aload 1 /* cause */
            invokevirtual jdk.incubator.http.Exchange.cancel:(Ljava/io/IOException;)V
         2: .line 240
            return
        end local 1 // java.io.IOException cause
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    3     1  cause  Ljava/io/IOException;
    MethodParameters:
       Name  Flags
      cause  

  public java.util.concurrent.CompletableFuture<jdk.incubator.http.HttpResponseImpl<T>> responseAsync();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 243
            new jdk.incubator.http.internal.common.MinimalFuture
            dup
            invokespecial jdk.incubator.http.internal.common.MinimalFuture.<init>:()V
            astore 1 /* start */
        start local 1 // java.util.concurrent.CompletableFuture start
         1: .line 244
            aload 0 /* this */
            aload 1 /* start */
            invokevirtual jdk.incubator.http.MultiExchange.responseAsync0:(Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;
            astore 2 /* cf */
        start local 2 // java.util.concurrent.CompletableFuture cf
         2: .line 245
            aload 1 /* start */
            invokedynamic get()Ljava/util/function/Supplier;
              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:
                  ()Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$0()Ljava/lang/Void; (6)
                  ()Ljava/lang/Void;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.executor:Ljava/util/concurrent/Executor;
            invokevirtual java.util.concurrent.CompletableFuture.completeAsync:(Ljava/util/function/Supplier;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
            pop
         3: .line 246
            aload 2 /* cf */
            areturn
        end local 2 // java.util.concurrent.CompletableFuture cf
        end local 1 // java.util.concurrent.CompletableFuture start
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            1    4     1  start  Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;
            2    4     2     cf  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/HttpResponseImpl<TT;>;>;
    Signature: ()Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/HttpResponseImpl<TT;>;>;

  private java.util.concurrent.CompletableFuture<jdk.incubator.http.HttpResponseImpl<T>> responseAsync0(java.util.concurrent.CompletableFuture<java.lang.Void>);
    descriptor: (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // java.util.concurrent.CompletableFuture start
         0: .line 250
            aload 1 /* start */
            aload 0 /* this */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$1(Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; (7)
                  (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage;
            invokevirtual java.util.concurrent.CompletableFuture.thenCompose:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
         1: .line 251
            aload 0 /* this */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$2(Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage; (7)
                  (Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage;
            invokevirtual java.util.concurrent.CompletableFuture.thenCompose:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
         2: .line 250
            areturn
        end local 1 // java.util.concurrent.CompletableFuture start
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    3     1  start  Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;
    Signature: (Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;)Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/HttpResponseImpl<TT;>;>;
    MethodParameters:
       Name  Flags
      start  

  java.util.concurrent.CompletableFuture<U> multiResponseAsync();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 259
            new jdk.incubator.http.internal.common.MinimalFuture
            dup
            invokespecial jdk.incubator.http.internal.common.MinimalFuture.<init>:()V
            astore 1 /* start */
        start local 1 // java.util.concurrent.CompletableFuture start
         1: .line 260
            aload 0 /* this */
            aload 1 /* start */
            invokevirtual jdk.incubator.http.MultiExchange.responseAsync0:(Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;
            astore 2 /* cf */
        start local 2 // java.util.concurrent.CompletableFuture cf
         2: .line 262
            aload 2 /* cf */
            aload 0 /* this */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$4(Ljdk/incubator/http/HttpResponseImpl;)Ljdk/incubator/http/HttpResponse; (7)
                  (Ljdk/incubator/http/HttpResponseImpl;)Ljdk/incubator/http/HttpResponse;
            invokevirtual java.util.concurrent.CompletableFuture.thenApply:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
         3: .line 261
            astore 3 /* mainResponse */
        start local 3 // java.util.concurrent.CompletableFuture mainResponse
         4: .line 267
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            aload 3 /* mainResponse */
            invokevirtual jdk.incubator.http.PushGroup.setMainResponse:(Ljava/util/concurrent/CompletableFuture;)V
         5: .line 269
            aload 3 /* mainResponse */
            aload 0 /* this */
            invokedynamic accept(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/Consumer;
              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:
                  (Ljava/lang/Object;)V
                  jdk/incubator/http/MultiExchange.lambda$5(Ljdk/incubator/http/HttpResponse;)V (7)
                  (Ljdk/incubator/http/HttpResponse;)V
            invokevirtual java.util.concurrent.CompletableFuture.thenAccept:(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;
            pop
         6: .line 273
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.multiResponseHandler:Ljdk/incubator/http/HttpResponse$MultiProcessor;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            invokevirtual jdk.incubator.http.PushGroup.groupResult:()Ljava/util/concurrent/CompletableFuture;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            invokevirtual jdk.incubator.http.PushGroup.pushesCF:()Ljava/util/concurrent/CompletableFuture;
            invokeinterface jdk.incubator.http.HttpResponse$MultiProcessor.completion:(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;
            astore 4 /* res */
        start local 4 // java.util.concurrent.CompletableFuture res
         7: .line 274
            aload 1 /* start */
            invokedynamic get()Ljava/util/function/Supplier;
              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:
                  ()Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$6()Ljava/lang/Void; (6)
                  ()Ljava/lang/Void;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.executor:Ljava/util/concurrent/Executor;
            invokevirtual java.util.concurrent.CompletableFuture.completeAsync:(Ljava/util/function/Supplier;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
            pop
         8: .line 275
            aload 4 /* res */
            areturn
        end local 4 // java.util.concurrent.CompletableFuture res
        end local 3 // java.util.concurrent.CompletableFuture mainResponse
        end local 2 // java.util.concurrent.CompletableFuture cf
        end local 1 // java.util.concurrent.CompletableFuture start
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            1    9     1         start  Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;
            2    9     2            cf  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/HttpResponseImpl<TT;>;>;
            4    9     3  mainResponse  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/HttpResponse<TT;>;>;
            7    9     4           res  Ljava/util/concurrent/CompletableFuture<TU;>;
    Signature: ()Ljava/util/concurrent/CompletableFuture<TU;>;

  private java.util.concurrent.CompletableFuture<jdk.incubator.http.Response> responseAsyncImpl();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange this
         0: .line 280
            aload 0 /* this */
            dup
            getfield jdk.incubator.http.MultiExchange.attempts:I
            iconst_1
            iadd
            dup_x1
            putfield jdk.incubator.http.MultiExchange.attempts:I
            getstatic jdk.incubator.http.MultiExchange.max_attempts:I
            if_icmple 3
         1: .line 281
            new java.io.IOException
            dup
            ldc "Too many retries"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.failedFuture:(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            astore 1 /* cf */
        start local 1 // java.util.concurrent.CompletableFuture cf
         2: .line 282
            goto 16
        end local 1 // java.util.concurrent.CompletableFuture cf
         3: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
            invokevirtual jdk.incubator.http.HttpRequestImpl.duration:()Ljava/time/Duration;
            ifnull 6
         4: .line 284
            aload 0 /* this */
            new jdk.incubator.http.MultiExchange$TimedEvent
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
            invokevirtual jdk.incubator.http.HttpRequestImpl.duration:()Ljava/time/Duration;
            invokespecial jdk.incubator.http.MultiExchange$TimedEvent.<init>:(Ljdk/incubator/http/MultiExchange;Ljava/time/Duration;)V
            putfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
         5: .line 285
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.client:Ljdk/incubator/http/HttpClientImpl;
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.timedEvent:Ljdk/incubator/http/MultiExchange$TimedEvent;
            invokevirtual jdk.incubator.http.HttpClientImpl.registerTimer:(Ljdk/incubator/http/TimeoutEvent;)V
         6: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
            invokevirtual jdk.incubator.http.MultiExchange.requestFilters:(Ljdk/incubator/http/HttpRequestImpl;)V
         7: .line 290
            goto 10
      StackMap locals:
      StackMap stack: java.io.IOException
         8: astore 2 /* e */
        start local 2 // java.io.IOException e
         9: .line 291
            aload 2 /* e */
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.failedFuture:(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 2 // java.io.IOException e
        10: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.getExchange:()Ljdk/incubator/http/Exchange;
            astore 2 /* exch */
        start local 2 // jdk.incubator.http.Exchange exch
        11: .line 295
            aload 2 /* exch */
            invokevirtual jdk.incubator.http.Exchange.responseAsync:()Ljava/util/concurrent/CompletableFuture;
        12: .line 296
            aload 0 /* this */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$7(Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage; (7)
                  (Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage;
            invokevirtual java.util.concurrent.CompletableFuture.thenCompose:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
        13: .line 318
            aload 0 /* this */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;)Ljava/util/function/BiFunction;
              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:
                  (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$8(Ljdk/incubator/http/Response;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture; (7)
                  (Ljdk/incubator/http/Response;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            invokevirtual java.util.concurrent.CompletableFuture.handle:(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;
        14: .line 332
            invokestatic java.util.function.UnaryOperator.identity:()Ljava/util/function/UnaryOperator;
            invokevirtual java.util.concurrent.CompletableFuture.thenCompose:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
        15: .line 295
            astore 1 /* cf */
        end local 2 // jdk.incubator.http.Exchange exch
        start local 1 // java.util.concurrent.CompletableFuture cf
        16: .line 334
      StackMap locals: java.util.concurrent.CompletableFuture
      StackMap stack:
            aload 1 /* cf */
            areturn
        end local 1 // java.util.concurrent.CompletableFuture cf
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            2    3     1    cf  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/Response;>;
           16   17     1    cf  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/Response;>;
            9   10     2     e  Ljava/io/IOException;
           11   16     2  exch  Ljdk/incubator/http/Exchange<TT;>;
      Exception table:
        from    to  target  type
           6     7       8  Class java.io.IOException
    Signature: ()Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/Response;>;

  private java.util.concurrent.CompletableFuture<jdk.incubator.http.Response> getExceptionalCF(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // java.lang.Throwable t
         0: .line 342
            aload 1 /* t */
            instanceof java.util.concurrent.CompletionException
            ifne 1
            aload 1 /* t */
            instanceof java.util.concurrent.ExecutionException
            ifeq 3
         1: .line 343
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
            ifnull 3
         2: .line 344
            aload 1 /* t */
            invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
            astore 1 /* t */
         3: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.cancelled:Z
            ifeq 5
            aload 1 /* t */
            instanceof java.io.IOException
            ifeq 5
         4: .line 348
            new jdk.incubator.http.HttpTimeoutException
            dup
            ldc "request timed out"
            invokespecial jdk.incubator.http.HttpTimeoutException.<init>:(Ljava/lang/String;)V
            astore 1 /* t */
         5: .line 350
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.failedFuture:(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 1 // java.lang.Throwable t
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    6     1     t  Ljava/lang/Throwable;
    Signature: (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/Response;>;
    MethodParameters:
      Name  Flags
      t     

  private static java.lang.Void lambda$0();
    descriptor: ()Ljava/lang/Void;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 245
            aconst_null
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private java.util.concurrent.CompletionStage lambda$1(java.lang.Void);
    descriptor: (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // java.lang.Void v
         0: .line 250
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.responseAsyncImpl:()Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 1 // java.lang.Void v
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    1     1     v  Ljava/lang/Void;

  private java.util.concurrent.CompletionStage lambda$2(jdk.incubator.http.Response);
    descriptor: (Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.Response r
         0: .line 252
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.getExchange:()Ljdk/incubator/http/Exchange;
            astore 2 /* exch */
        start local 2 // jdk.incubator.http.Exchange exch
         1: .line 253
            aload 2 /* exch */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.responseHandler:Ljdk/incubator/http/HttpResponse$BodyHandler;
            invokevirtual jdk.incubator.http.Exchange.readBodyAsync:(Ljdk/incubator/http/HttpResponse$BodyHandler;)Ljava/util/concurrent/CompletableFuture;
         2: .line 254
            aload 0 /* this */
            aload 1 /* r */
            aload 2 /* exch */
            invokedynamic apply(Ljdk/incubator/http/MultiExchange;Ljdk/incubator/http/Response;Ljdk/incubator/http/Exchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/MultiExchange.lambda$3(Ljdk/incubator/http/Response;Ljdk/incubator/http/Exchange;Ljava/lang/Object;)Ljdk/incubator/http/HttpResponseImpl; (7)
                  (Ljava/lang/Object;)Ljdk/incubator/http/HttpResponseImpl;
            invokevirtual java.util.concurrent.CompletableFuture.thenApply:(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;
         3: .line 253
            areturn
        end local 2 // jdk.incubator.http.Exchange exch
        end local 1 // jdk.incubator.http.Response r
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    4     1     r  Ljdk/incubator/http/Response;
            1    4     2  exch  Ljdk/incubator/http/Exchange<TT;>;

  private jdk.incubator.http.HttpResponse lambda$4(jdk.incubator.http.HttpResponseImpl);
    descriptor: (Ljdk/incubator/http/HttpResponseImpl;)Ljdk/incubator/http/HttpResponse;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.HttpResponseImpl b
         0: .line 263
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.multiResponseHandler:Ljdk/incubator/http/HttpResponse$MultiProcessor;
            aload 1 /* b */
            invokeinterface jdk.incubator.http.HttpResponse$MultiProcessor.onResponse:(Ljdk/incubator/http/HttpResponse;)V
         1: .line 264
            aload 1 /* b */
            areturn
        end local 1 // jdk.incubator.http.HttpResponseImpl b
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    2     1     b  Ljdk/incubator/http/HttpResponseImpl<TT;>;

  private void lambda$5(jdk.incubator.http.HttpResponse);
    descriptor: (Ljdk/incubator/http/HttpResponse;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.HttpResponse r
         0: .line 271
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.pushGroup:Ljdk/incubator/http/PushGroup;
            iconst_1
            invokevirtual jdk.incubator.http.PushGroup.noMorePushes:(Z)V
         1: .line 272
            return
        end local 1 // jdk.incubator.http.HttpResponse r
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    2     1     r  Ljdk/incubator/http/HttpResponse<TT;>;

  private static java.lang.Void lambda$6();
    descriptor: ()Ljava/lang/Void;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 274
            aconst_null
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private java.util.concurrent.CompletionStage lambda$7(jdk.incubator.http.Response);
    descriptor: (Ljdk/incubator/http/Response;)Ljava/util/concurrent/CompletionStage;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.Response response
         0: .line 297
            aconst_null
            astore 2 /* newrequest */
        start local 2 // jdk.incubator.http.HttpRequestImpl newrequest
         1: .line 300
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual jdk.incubator.http.MultiExchange.responseFilters:(Ljdk/incubator/http/Response;)Ljdk/incubator/http/HttpRequestImpl;
            astore 2 /* newrequest */
         2: .line 301
            goto 5
      StackMap locals: jdk.incubator.http.MultiExchange jdk.incubator.http.Response jdk.incubator.http.HttpRequestImpl
      StackMap stack: java.io.IOException
         3: astore 3 /* e */
        start local 3 // java.io.IOException e
         4: .line 302
            aload 3 /* e */
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.failedFuture:(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 3 // java.io.IOException e
         5: .line 305
      StackMap locals:
      StackMap stack:
            aload 2 /* newrequest */
            ifnonnull 9
         6: .line 306
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.attempts:I
            iconst_1
            if_icmple 8
         7: .line 307
            new java.lang.StringBuilder
            dup
            ldc "Succeeded on attempt: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.attempts:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            iconst_0
            anewarray java.lang.Object
            invokestatic jdk.incubator.http.internal.common.Log.logError:(Ljava/lang/String;[Ljava/lang/Object;)V
         8: .line 309
      StackMap locals:
      StackMap stack:
            aload 1 /* response */
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.completedFuture:(Ljava/lang/Object;)Ljdk/incubator/http/internal/common/MinimalFuture;
            areturn
         9: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newrequest */
            putfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
        10: .line 312
            aload 0 /* this */
            new jdk.incubator.http.Exchange
            dup
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.currentreq:Ljdk/incubator/http/HttpRequestImpl;
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.acc:Ljava/security/AccessControlContext;
            invokespecial jdk.incubator.http.Exchange.<init>:(Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;Ljava/security/AccessControlContext;)V
            invokevirtual jdk.incubator.http.MultiExchange.setExchange:(Ljdk/incubator/http/Exchange;)V
        11: .line 314
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.responseAsyncImpl:()Ljava/util/concurrent/CompletableFuture;
            areturn
        end local 2 // jdk.incubator.http.HttpRequestImpl newrequest
        end local 1 // jdk.incubator.http.Response response
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0   12     1    response  Ljdk/incubator/http/Response;
            1   12     2  newrequest  Ljdk/incubator/http/HttpRequestImpl;
            4    5     3           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException

  private java.util.concurrent.CompletableFuture lambda$8(jdk.incubator.http.Response, java.lang.Throwable);
    descriptor: (Ljdk/incubator/http/Response;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 1 // jdk.incubator.http.Response response
        start local 2 // java.lang.Throwable ex
         0: .line 319
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.cancelTimer:()V
         1: .line 320
            aload 2 /* ex */
            ifnonnull 4
         2: .line 321
            getstatic jdk.incubator.http.MultiExchange.$assertionsDisabled:Z
            ifne 3
            aload 1 /* response */
            ifnonnull 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 322
      StackMap locals:
      StackMap stack:
            aload 1 /* response */
            invokestatic jdk.incubator.http.internal.common.MinimalFuture.completedFuture:(Ljava/lang/Object;)Ljdk/incubator/http/internal/common/MinimalFuture;
            areturn
         4: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ex */
            invokevirtual jdk.incubator.http.MultiExchange.getExceptionalCF:(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;
            astore 3 /* error */
        start local 3 // java.util.concurrent.CompletableFuture error
         5: .line 326
            aload 3 /* error */
            ifnonnull 7
         6: .line 327
            aload 0 /* this */
            invokevirtual jdk.incubator.http.MultiExchange.responseAsyncImpl:()Ljava/util/concurrent/CompletableFuture;
            areturn
         7: .line 329
      StackMap locals: java.util.concurrent.CompletableFuture
      StackMap stack:
            aload 3 /* error */
            areturn
        end local 3 // java.util.concurrent.CompletableFuture error
        end local 2 // java.lang.Throwable ex
        end local 1 // jdk.incubator.http.Response response
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    8     1  response  Ljdk/incubator/http/Response;
            0    8     2        ex  Ljava/lang/Throwable;
            5    8     3     error  Ljava/util/concurrent/CompletableFuture<Ljdk/incubator/http/Response;>;

  private jdk.incubator.http.HttpResponseImpl lambda$3(jdk.incubator.http.Response, jdk.incubator.http.Exchange, java.lang.Object);
    descriptor: (Ljdk/incubator/http/Response;Ljdk/incubator/http/Exchange;Ljava/lang/Object;)Ljdk/incubator/http/HttpResponseImpl;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // jdk.incubator.http.MultiExchange this
        start local 3 // java.lang.Object body
         0: .line 254
            new jdk.incubator.http.HttpResponseImpl
            dup
            aload 0 /* this */
            getfield jdk.incubator.http.MultiExchange.userRequest:Ljdk/incubator/http/HttpRequest;
            aload 1
            aload 3 /* body */
            aload 2
            invokespecial jdk.incubator.http.HttpResponseImpl.<init>:(Ljdk/incubator/http/HttpRequest;Ljdk/incubator/http/Response;Ljava/lang/Object;Ljdk/incubator/http/Exchange;)V
            areturn
        end local 3 // java.lang.Object body
        end local 0 // jdk.incubator.http.MultiExchange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/MultiExchange<TU;TT;>;
            0    1     3  body  TT;
}
Signature: <U:Ljava/lang/Object;T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "MultiExchange.java"
NestMembers:
  jdk.incubator.http.MultiExchange$TimedEvent
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  AuthInfo = jdk.incubator.http.AuthenticationFilter$AuthInfo of jdk.incubator.http.AuthenticationFilter
  public final Redirect = jdk.incubator.http.HttpClient$Redirect of jdk.incubator.http.HttpClient
  public final Version = jdk.incubator.http.HttpClient$Version of jdk.incubator.http.HttpClient
  public abstract BodyHandler = jdk.incubator.http.HttpResponse$BodyHandler of jdk.incubator.http.HttpResponse
  public abstract MultiProcessor = jdk.incubator.http.HttpResponse$MultiProcessor of jdk.incubator.http.HttpResponse
  TimedEvent = jdk.incubator.http.MultiExchange$TimedEvent of jdk.incubator.http.MultiExchange