public class org.eclipse.jetty.util.FuturePromise<C> implements java.util.concurrent.Future<C>, org.eclipse.jetty.util.Promise<C>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.FuturePromise
  super_class: java.lang.Object
{
  private static java.lang.Throwable COMPLETED;
    descriptor: Ljava/lang/Throwable;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private final java.util.concurrent.atomic.AtomicBoolean _done;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.CountDownLatch _latch;
    descriptor: Ljava/util/concurrent/CountDownLatch;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private C _result;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Signature: TC;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 32
            new org.eclipse.jetty.util.ConstantThrowable
            dup
            invokespecial org.eclipse.jetty.util.ConstantThrowable.<init>:()V
            putstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.FuturePromise this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 34
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
         3: .line 40
            return
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;

  public void <init>();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // java.lang.Object result
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 34
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
         3: .line 44
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            putfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
         4: .line 45
            aload 0 /* this */
            aload 1 /* result */
            putfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
         5: .line 46
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         6: .line 47
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         7: .line 48
            return
        end local 1 // java.lang.Object result
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    8     1  result  TC;
    Signature: (TC;)V
    MethodParameters:
        Name  Flags
      result  

  public void <init>(C, java.lang.Throwable);
    descriptor: (Ljava/lang/Object;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // java.lang.Object ctx
        start local 2 // java.lang.Throwable failed
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 34
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
         3: .line 52
            aload 0 /* this */
            aload 1 /* ctx */
            putfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
         4: .line 53
            aload 0 /* this */
            aload 2 /* failed */
            putfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
         5: .line 54
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         6: .line 55
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         7: .line 56
            return
        end local 2 // java.lang.Throwable failed
        end local 1 // java.lang.Object ctx
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    8     1     ctx  TC;
            0    8     2  failed  Ljava/lang/Throwable;
    Signature: (TC;Ljava/lang/Throwable;)V
    MethodParameters:
        Name  Flags
      ctx     
      failed  

  public void succeeded();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // java.lang.Object result
         0: .line 61
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 4
         1: .line 63
            aload 0 /* this */
            aload 1 /* result */
            putfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
         2: .line 64
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            putfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
         3: .line 65
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         4: .line 67
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object result
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    5     1  result  TC;
    Signature: (TC;)V
    MethodParameters:
        Name  Flags
      result  

  public void failed(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // java.lang.Throwable cause
         0: .line 72
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 3
         1: .line 74
            aload 0 /* this */
            aload 1 /* cause */
            putfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
         2: .line 75
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         3: .line 77
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    4     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public boolean cancel(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // boolean mayInterruptIfRunning
         0: .line 82
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 5
         1: .line 84
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
         2: .line 85
            aload 0 /* this */
            new java.util.concurrent.CancellationException
            dup
            invokespecial java.util.concurrent.CancellationException.<init>:()V
            putfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
         3: .line 86
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         4: .line 87
            iconst_1
            ireturn
         5: .line 89
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // boolean mayInterruptIfRunning
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    6     0                   this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    6     1  mayInterruptIfRunning  Z
    MethodParameters:
                       Name  Flags
      mayInterruptIfRunning  

  public boolean isCancelled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.FuturePromise this
         0: .line 95
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 6
         1: .line 99
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         2: .line 100
            goto 5
         3: .line 101
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 1 /* e */
        start local 1 // java.lang.InterruptedException e
         4: .line 103
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.InterruptedException e
         5: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            instanceof java.util.concurrent.CancellationException
            ireturn
         6: .line 107
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            4    5     1     e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.InterruptedException

  public boolean isDone();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.FuturePromise this
         0: .line 113
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.getCount:()J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;

  public C get();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.FuturePromise this
         0: .line 119
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         1: .line 120
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            getstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            if_acmpne 3
         2: .line 121
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
            areturn
         3: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            instanceof java.util.concurrent.CancellationException
            ifeq 5
         4: .line 123
            new java.util.concurrent.CancellationException
            dup
            invokespecial java.util.concurrent.CancellationException.<init>:()V
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            invokevirtual java.util.concurrent.CancellationException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            checkcast java.util.concurrent.CancellationException
            athrow
         5: .line 124
      StackMap locals:
      StackMap stack:
            new java.util.concurrent.ExecutionException
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            invokespecial java.util.concurrent.ExecutionException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException
    Signature: ()TC;

  public C get(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.util.FuturePromise this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 130
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._latch:Ljava/util/concurrent/CountDownLatch;
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            ifne 2
         1: .line 131
            new java.util.concurrent.TimeoutException
            dup
            invokespecial java.util.concurrent.TimeoutException.<init>:()V
            athrow
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            getstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            if_acmpne 4
         3: .line 134
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
            areturn
         4: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            instanceof java.util.concurrent.TimeoutException
            ifeq 6
         5: .line 136
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            checkcast java.util.concurrent.TimeoutException
            athrow
         6: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            instanceof java.util.concurrent.CancellationException
            ifeq 8
         7: .line 138
            new java.util.concurrent.CancellationException
            dup
            invokespecial java.util.concurrent.CancellationException.<init>:()V
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            invokevirtual java.util.concurrent.CancellationException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            checkcast java.util.concurrent.CancellationException
            athrow
         8: .line 139
      StackMap locals:
      StackMap stack:
            new java.util.concurrent.ExecutionException
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            invokespecial java.util.concurrent.ExecutionException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
            0    9     1  timeout  J
            0    9     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
    Signature: (JLjava/util/concurrent/TimeUnit;)TC;
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public static void rethrow(java.util.concurrent.ExecutionException);
    descriptor: (Ljava/util/concurrent/ExecutionException;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.util.concurrent.ExecutionException e
         0: .line 144
            aload 0 /* e */
            invokevirtual java.util.concurrent.ExecutionException.getCause:()Ljava/lang/Throwable;
            astore 1 /* cause */
        start local 1 // java.lang.Throwable cause
         1: .line 145
            aload 1 /* cause */
            instanceof java.io.IOException
            ifeq 3
         2: .line 146
            aload 1 /* cause */
            checkcast java.io.IOException
            athrow
         3: .line 147
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1 /* cause */
            instanceof java.lang.Error
            ifeq 5
         4: .line 148
            aload 1 /* cause */
            checkcast java.lang.Error
            athrow
         5: .line 149
      StackMap locals:
      StackMap stack:
            aload 1 /* cause */
            instanceof java.lang.RuntimeException
            ifeq 7
         6: .line 150
            aload 1 /* cause */
            checkcast java.lang.RuntimeException
            athrow
         7: .line 151
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            aload 1 /* cause */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Throwable cause
        end local 0 // java.util.concurrent.ExecutionException e
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0      e  Ljava/util/concurrent/ExecutionException;
            1    8     1  cause  Ljava/lang/Throwable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      e     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.FuturePromise this
         0: .line 157
            ldc "FutureCallback@%x{%b,%b,%s}"
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._done:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._cause:Ljava/lang/Throwable;
            getstatic org.eclipse.jetty.util.FuturePromise.COMPLETED:Ljava/lang/Throwable;
            if_acmpne 1
            iconst_1
            goto 2
      StackMap locals: org.eclipse.jetty.util.FuturePromise
      StackMap stack: java.lang.String java.lang.Object[] java.lang.Object[] int
         1: iconst_0
      StackMap locals: org.eclipse.jetty.util.FuturePromise
      StackMap stack: java.lang.String java.lang.Object[] java.lang.Object[] int int
         2: invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            getfield org.eclipse.jetty.util.FuturePromise._result:Ljava/lang/Object;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.util.FuturePromise this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/FuturePromise<TC;>;
}
Signature: <C:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/concurrent/Future<TC;>;Lorg/eclipse/jetty/util/Promise<TC;>;
SourceFile: "FuturePromise.java"