public final class org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner<T, BT extends org.eclipse.collections.api.block.procedure.Procedure<? super T>>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner
  super_class: java.lang.Object
{
  private final org.eclipse.collections.api.block.function.Function<org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask<T, BT>, BT> procedureFunction;
    descriptor: Lorg/eclipse/collections/api/block/function/Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/block/function/Function<Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask<TT;TBT;>;TBT;>;

  private org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask<T, BT>[] procedures;
    descriptor: [Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask;
    flags: (0x0002) ACC_PRIVATE
    Signature: [Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask<TT;TBT;>;

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

  private final org.eclipse.collections.impl.parallel.Combiner<BT> combiner;
    descriptor: Lorg/eclipse/collections/impl/parallel/Combiner;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;

  private final int taskCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.BlockingQueue<BT> outputQueue;
    descriptor: Ljava/util/concurrent/BlockingQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/BlockingQueue<TBT;>;

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

  public void <init>(org.eclipse.collections.impl.parallel.Combiner<BT>, );
    descriptor: (Lorg/eclipse/collections/impl/parallel/Combiner;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
        start local 1 // org.eclipse.collections.impl.parallel.Combiner newCombiner
        start local 2 // int taskCount
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            new org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner$ProcedureExtractor
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner$ProcedureExtractor.<init>:(Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner;)V
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.procedureFunction:Lorg/eclipse/collections/api/block/function/Function;
         2: .line 34
            aload 0 /* this */
            aload 1 /* newCombiner */
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
         3: .line 35
            aload 0 /* this */
            iload 2 /* taskCount */
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.taskCount:I
         4: .line 36
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.useCombineOne:()Z
            ifeq 8
         5: .line 38
            aload 0 /* this */
            new java.util.concurrent.ArrayBlockingQueue
            dup
            iload 2 /* taskCount */
            invokespecial java.util.concurrent.ArrayBlockingQueue.<init>:(I)V
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.outputQueue:Ljava/util/concurrent/BlockingQueue;
         6: .line 39
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.latch:Ljava/util/concurrent/CountDownLatch;
         7: .line 40
            goto 10
         8: .line 43
      StackMap locals: org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner org.eclipse.collections.impl.parallel.Combiner int
      StackMap stack:
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iload 2 /* taskCount */
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.latch:Ljava/util/concurrent/CountDownLatch;
         9: .line 44
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.outputQueue:Ljava/util/concurrent/BlockingQueue;
        10: .line 46
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int taskCount
        end local 1 // org.eclipse.collections.impl.parallel.Combiner newCombiner
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            0   11     1  newCombiner  Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;
            0   11     2    taskCount  I
    Signature: (Lorg/eclipse/collections/impl/parallel/Combiner<TBT;>;I)V
    MethodParameters:
             Name  Flags
      newCombiner  
      taskCount    

  private void createAndExecuteTasks(java.util.concurrent.Executor, org.eclipse.collections.impl.parallel.ProcedureFactory<BT>, org.eclipse.collections.impl.parallel.BatchIterable<T>);
    descriptor: (Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/BatchIterable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
        start local 1 // java.util.concurrent.Executor executor
        start local 2 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        start local 3 // org.eclipse.collections.impl.parallel.BatchIterable batchIterable
         0: .line 50
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.taskCount:I
            anewarray org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.procedures:[Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask;
         1: .line 51
            iconst_0
            istore 4 /* batchNumber */
        start local 4 // int batchNumber
         2: goto 8
         3: .line 54
      StackMap locals: int
      StackMap stack:
            new org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask
            dup
            aload 0 /* this */
            aload 2 /* procedureFactory */
            aload 3 /* batchIterable */
            iload 4 /* batchNumber */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.taskCount:I
            invokespecial org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask.<init>:(Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/BatchIterable;II)V
         4: .line 53
            astore 5 /* procedureFJTask */
        start local 5 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask procedureFJTask
         5: .line 55
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.procedures:[Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask;
            iload 4 /* batchNumber */
            aload 5 /* procedureFJTask */
            aastore
         6: .line 56
            aload 1 /* executor */
            aload 5 /* procedureFJTask */
            invokeinterface java.util.concurrent.Executor.execute:(Ljava/lang/Runnable;)V
        end local 5 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask procedureFJTask
         7: .line 51
            iinc 4 /* batchNumber */ 1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* batchNumber */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.taskCount:I
            if_icmplt 3
        end local 4 // int batchNumber
         9: .line 58
            return
        end local 3 // org.eclipse.collections.impl.parallel.BatchIterable batchIterable
        end local 2 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0              this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            0   10     1          executor  Ljava/util/concurrent/Executor;
            0   10     2  procedureFactory  Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;
            0   10     3     batchIterable  Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;
            2    9     4       batchNumber  I
            5    7     5   procedureFJTask  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask<TT;TBT;>;
    Signature: (Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;)V
    MethodParameters:
                  Name  Flags
      executor          
      procedureFactory  
      batchIterable     

  public void setFailed(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
        start local 1 // java.lang.Throwable newError
         0: .line 62
            aload 0 /* this */
            aload 1 /* newError */
            putfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.error:Ljava/lang/Throwable;
         1: .line 63
            return
        end local 1 // java.lang.Throwable newError
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            0    2     1  newError  Ljava/lang/Throwable;
    MethodParameters:
          Name  Flags
      newError  

  public void taskCompleted(org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask<T, BT>);
    descriptor: (Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
        start local 1 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask task
         0: .line 67
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.useCombineOne:()Z
            ifeq 3
         1: .line 69
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.outputQueue:Ljava/util/concurrent/BlockingQueue;
            aload 1 /* task */
            invokevirtual org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask.getProcedure:()Lorg/eclipse/collections/api/block/procedure/Procedure;
            invokeinterface java.util.concurrent.BlockingQueue.add:(Ljava/lang/Object;)Z
            pop
         2: .line 70
            goto 4
         3: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         4: .line 75
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTask task
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            0    5     1  task  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask<TT;TBT;>;
    Signature: (Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask<TT;TBT;>;)V
    MethodParameters:
      Name  Flags
      task  

  public void executeAndCombine(java.util.concurrent.Executor, org.eclipse.collections.impl.parallel.ProcedureFactory<BT>, org.eclipse.collections.impl.parallel.BatchIterable<T>);
    descriptor: (Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/BatchIterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
        start local 1 // java.util.concurrent.Executor executor
        start local 2 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        start local 3 // org.eclipse.collections.impl.parallel.BatchIterable set
         0: .line 79
            aload 0 /* this */
            aload 1 /* executor */
            aload 2 /* procedureFactory */
            aload 3 /* set */
            invokevirtual org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.createAndExecuteTasks:(Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory;Lorg/eclipse/collections/impl/parallel/BatchIterable;)V
         1: .line 80
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.join:()V
         2: .line 81
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.error:Ljava/lang/Throwable;
            ifnull 4
         3: .line 83
            new java.lang.RuntimeException
            dup
            ldc "One or more parallel tasks failed"
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.error:Ljava/lang/Throwable;
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
         4: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combineTasks:()V
         5: .line 87
            return
        end local 3 // org.eclipse.collections.impl.parallel.BatchIterable set
        end local 2 // org.eclipse.collections.impl.parallel.ProcedureFactory procedureFactory
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            0    6     1          executor  Ljava/util/concurrent/Executor;
            0    6     2  procedureFactory  Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;
            0    6     3               set  Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;
    Signature: (Ljava/util/concurrent/Executor;Lorg/eclipse/collections/impl/parallel/ProcedureFactory<TBT;>;Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;)V
    MethodParameters:
                  Name  Flags
      executor          
      procedureFactory  
      set               

  private void join();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.useCombineOne:()Z
            ifeq 7
         1: .line 95
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.taskCount:I
            istore 1 /* remaingTaskCount */
        start local 1 // int remaingTaskCount
         2: .line 96
            goto 5
         3: .line 98
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.outputQueue:Ljava/util/concurrent/BlockingQueue;
            invokeinterface java.util.concurrent.BlockingQueue.take:()Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.combineOne:(Ljava/lang/Object;)V
         4: .line 99
            iinc 1 /* remaingTaskCount */ -1
         5: .line 96
      StackMap locals:
      StackMap stack:
            iload 1 /* remaingTaskCount */
            ifgt 3
        end local 1 // int remaingTaskCount
         6: .line 101
            goto 11
         7: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.latch:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         8: .line 106
            goto 11
         9: .line 107
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 1 /* e */
        start local 1 // java.lang.InterruptedException e
        10: .line 109
            new java.lang.RuntimeException
            dup
            ldc "Combine failed"
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.InterruptedException e
        11: .line 111
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
            2    6     1  remaingTaskCount  I
           10   11     1                 e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           0     8       9  Class java.lang.InterruptedException

  private void combineTasks();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
         0: .line 115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.useCombineOne:()Z
            ifne 2
         1: .line 117
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.combiner:Lorg/eclipse/collections/impl/parallel/Combiner;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.procedures:[Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTask;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner.procedureFunction:Lorg/eclipse/collections/api/block/function/Function;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.collect:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            invokeinterface org.eclipse.collections.impl.parallel.Combiner.combineAll:(Ljava/lang/Iterable;)V
         2: .line 119
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/parallel/BatchIterableProcedureFJTaskRunner<TT;TBT;>;
}
Signature: <T:Ljava/lang/Object;BT::Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;>Ljava/lang/Object;
SourceFile: "BatchIterableProcedureFJTaskRunner.java"
NestMembers:
  org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner$ProcedureExtractor
InnerClasses:
  private final ProcedureExtractor = org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner$ProcedureExtractor of org.eclipse.collections.impl.parallel.BatchIterableProcedureFJTaskRunner