public class io.ebeaninternal.server.query.QueryFutureList<T> extends io.ebeaninternal.server.query.BaseFuture<java.util.List<T>> implements io.ebean.FutureList<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.query.QueryFutureList
  super_class: io.ebeaninternal.server.query.BaseFuture
{
  private final io.ebeaninternal.server.query.CallableQueryList<T> call;
    descriptor: Lio/ebeaninternal/server/query/CallableQueryList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/ebeaninternal/server/query/CallableQueryList<TT;>;

  public void <init>(io.ebeaninternal.server.query.CallableQueryList<T>);
    descriptor: (Lio/ebeaninternal/server/query/CallableQueryList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
        start local 1 // io.ebeaninternal.server.query.CallableQueryList call
         0: .line 22
            aload 0 /* this */
            new java.util.concurrent.FutureTask
            dup
            aload 1 /* call */
            invokespecial java.util.concurrent.FutureTask.<init>:(Ljava/util/concurrent/Callable;)V
            invokespecial io.ebeaninternal.server.query.BaseFuture.<init>:(Ljava/util/concurrent/FutureTask;)V
         1: .line 23
            aload 0 /* this */
            aload 1 /* call */
            putfield io.ebeaninternal.server.query.QueryFutureList.call:Lio/ebeaninternal/server/query/CallableQueryList;
         2: .line 24
            return
        end local 1 // io.ebeaninternal.server.query.CallableQueryList call
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
            0    3     1  call  Lio/ebeaninternal/server/query/CallableQueryList<TT;>;
    Signature: (Lio/ebeaninternal/server/query/CallableQueryList<TT;>;)V
    MethodParameters:
      Name  Flags
      call  

  public java.util.concurrent.FutureTask<java.util.List<T>> getFutureTask();
    descriptor: ()Ljava/util/concurrent/FutureTask;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
         0: .line 27
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.QueryFutureList.futureTask:Ljava/util/concurrent/FutureTask;
            areturn
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
    Signature: ()Ljava/util/concurrent/FutureTask<Ljava/util/List<TT;>;>;

  public io.ebean.Transaction getTransaction();
    descriptor: ()Lio/ebean/Transaction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
         0: .line 31
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.QueryFutureList.call:Lio/ebeaninternal/server/query/CallableQueryList;
            getfield io.ebeaninternal.server.query.CallableQueryList.transaction:Lio/ebean/Transaction;
            areturn
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;

  public io.ebean.Query<T> getQuery();
    descriptor: ()Lio/ebean/Query;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
         0: .line 36
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.QueryFutureList.call:Lio/ebeaninternal/server/query/CallableQueryList;
            getfield io.ebeaninternal.server.query.CallableQueryList.query:Lio/ebeaninternal/api/SpiQuery;
            areturn
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
    Signature: ()Lio/ebean/Query<TT;>;

  public boolean cancel(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
        start local 1 // boolean mayInterruptIfRunning
         0: .line 41
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.QueryFutureList.call:Lio/ebeaninternal/server/query/CallableQueryList;
            getfield io.ebeaninternal.server.query.CallableQueryList.query:Lio/ebeaninternal/api/SpiQuery;
            invokeinterface io.ebeaninternal.api.SpiQuery.cancel:()V
         1: .line 42
            aload 0 /* this */
            iload 1 /* mayInterruptIfRunning */
            invokespecial io.ebeaninternal.server.query.BaseFuture.cancel:(Z)Z
            ireturn
        end local 1 // boolean mayInterruptIfRunning
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
            0    2     1  mayInterruptIfRunning  Z
    MethodParameters:
                       Name  Flags
      mayInterruptIfRunning  

  public java.util.List<T> getUnchecked();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
         0: .line 48
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.query.QueryFutureList.get:()Ljava/lang/Object;
            checkcast java.util.List
         1: areturn
         2: .line 50
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 1 /* e */
        start local 1 // java.lang.InterruptedException e
         3: .line 52
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 53
            new javax.persistence.PersistenceException
            dup
            aload 1 /* e */
            invokespecial javax.persistence.PersistenceException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.InterruptedException e
         5: .line 55
      StackMap locals:
      StackMap stack: java.util.concurrent.ExecutionException
            astore 1 /* e */
        start local 1 // java.util.concurrent.ExecutionException e
         6: .line 56
            new javax.persistence.PersistenceException
            dup
            aload 1 /* e */
            invokespecial javax.persistence.PersistenceException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.util.concurrent.ExecutionException e
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
            3    5     1     e  Ljava/lang/InterruptedException;
            6    7     1     e  Ljava/util/concurrent/ExecutionException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.InterruptedException
           0     1       5  Class java.util.concurrent.ExecutionException
    Signature: ()Ljava/util/List<TT;>;

  public java.util.List<T> getUnchecked(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.ebeaninternal.server.query.QueryFutureList this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 63
            aload 0 /* this */
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual io.ebeaninternal.server.query.QueryFutureList.get:(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
            checkcast java.util.List
         1: areturn
         2: .line 65
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 4 /* e */
        start local 4 // java.lang.InterruptedException e
         3: .line 67
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         4: .line 68
            new javax.persistence.PersistenceException
            dup
            aload 4 /* e */
            invokespecial javax.persistence.PersistenceException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.InterruptedException e
         5: .line 70
      StackMap locals:
      StackMap stack: java.util.concurrent.ExecutionException
            astore 4 /* e */
        start local 4 // java.util.concurrent.ExecutionException e
         6: .line 71
            new javax.persistence.PersistenceException
            dup
            aload 4 /* e */
            invokespecial javax.persistence.PersistenceException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.util.concurrent.ExecutionException e
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.ebeaninternal.server.query.QueryFutureList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/query/QueryFutureList<TT;>;
            0    7     1  timeout  J
            0    7     3     unit  Ljava/util/concurrent/TimeUnit;
            3    5     4        e  Ljava/lang/InterruptedException;
            6    7     4        e  Ljava/util/concurrent/ExecutionException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.InterruptedException
           0     1       5  Class java.util.concurrent.ExecutionException
    Exceptions:
      throws java.util.concurrent.TimeoutException
    Signature: (JLjava/util/concurrent/TimeUnit;)Ljava/util/List<TT;>;
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public boolean isCancelled();
    descriptor: ()Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial io.ebeaninternal.server.query.BaseFuture.isCancelled:()Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean isDone();
    descriptor: ()Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial io.ebeaninternal.server.query.BaseFuture.isDone:()Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object get(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            lload 1
            aload 3
            invokespecial io.ebeaninternal.server.query.BaseFuture.get:(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException

  public java.lang.Object get();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial io.ebeaninternal.server.query.BaseFuture.get:()Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException
}
Signature: <T:Ljava/lang/Object;>Lio/ebeaninternal/server/query/BaseFuture<Ljava/util/List<TT;>;>;Lio/ebean/FutureList<TT;>;
SourceFile: "QueryFutureList.java"