class com.lmax.disruptor.dsl.WorkerPoolInfo<T> implements com.lmax.disruptor.dsl.ConsumerInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.lmax.disruptor.dsl.WorkerPoolInfo
  super_class: java.lang.Object
{
  private final com.lmax.disruptor.WorkerPool<T> workerPool;
    descriptor: Lcom/lmax/disruptor/WorkerPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/lmax/disruptor/WorkerPool<TT;>;

  private final com.lmax.disruptor.SequenceBarrier sequenceBarrier;
    descriptor: Lcom/lmax/disruptor/SequenceBarrier;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean endOfChain;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  void <init>(com.lmax.disruptor.WorkerPool<T>, com.lmax.disruptor.SequenceBarrier);
    descriptor: (Lcom/lmax/disruptor/WorkerPool;Lcom/lmax/disruptor/SequenceBarrier;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
        start local 1 // com.lmax.disruptor.WorkerPool workerPool
        start local 2 // com.lmax.disruptor.SequenceBarrier sequenceBarrier
         0: .line 13
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 11
            aload 0 /* this */
            iconst_1
            putfield com.lmax.disruptor.dsl.WorkerPoolInfo.endOfChain:Z
         2: .line 15
            aload 0 /* this */
            aload 1 /* workerPool */
            putfield com.lmax.disruptor.dsl.WorkerPoolInfo.workerPool:Lcom/lmax/disruptor/WorkerPool;
         3: .line 16
            aload 0 /* this */
            aload 2 /* sequenceBarrier */
            putfield com.lmax.disruptor.dsl.WorkerPoolInfo.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
         4: .line 17
            return
        end local 2 // com.lmax.disruptor.SequenceBarrier sequenceBarrier
        end local 1 // com.lmax.disruptor.WorkerPool workerPool
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;
            0    5     1       workerPool  Lcom/lmax/disruptor/WorkerPool<TT;>;
            0    5     2  sequenceBarrier  Lcom/lmax/disruptor/SequenceBarrier;
    Signature: (Lcom/lmax/disruptor/WorkerPool<TT;>;Lcom/lmax/disruptor/SequenceBarrier;)V
    MethodParameters:
                 Name  Flags
      workerPool       final
      sequenceBarrier  final

  public com.lmax.disruptor.Sequence[] getSequences();
    descriptor: ()[Lcom/lmax/disruptor/Sequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 22
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.workerPool:Lcom/lmax/disruptor/WorkerPool;
            invokevirtual com.lmax.disruptor.WorkerPool.getWorkerSequences:()[Lcom/lmax/disruptor/Sequence;
            areturn
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;

  public com.lmax.disruptor.SequenceBarrier getBarrier();
    descriptor: ()Lcom/lmax/disruptor/SequenceBarrier;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 28
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
            areturn
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;

  public boolean isEndOfChain();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 34
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.endOfChain:Z
            ireturn
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;

  public void start(java.util.concurrent.Executor);
    descriptor: (Ljava/util/concurrent/Executor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
        start local 1 // java.util.concurrent.Executor executor
         0: .line 40
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.workerPool:Lcom/lmax/disruptor/WorkerPool;
            aload 1 /* executor */
            invokevirtual com.lmax.disruptor.WorkerPool.start:(Ljava/util/concurrent/Executor;)Lcom/lmax/disruptor/RingBuffer;
            pop
         1: .line 41
            return
        end local 1 // java.util.concurrent.Executor executor
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;
            0    2     1  executor  Ljava/util/concurrent/Executor;
    MethodParameters:
          Name  Flags
      executor  

  public void halt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 46
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.workerPool:Lcom/lmax/disruptor/WorkerPool;
            invokevirtual com.lmax.disruptor.WorkerPool.halt:()V
         1: .line 47
            return
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;

  public void markAsUsedInBarrier();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 52
            aload 0 /* this */
            iconst_0
            putfield com.lmax.disruptor.dsl.WorkerPoolInfo.endOfChain:Z
         1: .line 53
            return
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;

  public boolean isRunning();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
         0: .line 58
            aload 0 /* this */
            getfield com.lmax.disruptor.dsl.WorkerPoolInfo.workerPool:Lcom/lmax/disruptor/WorkerPool;
            invokevirtual com.lmax.disruptor.WorkerPool.isRunning:()Z
            ireturn
        end local 0 // com.lmax.disruptor.dsl.WorkerPoolInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/dsl/WorkerPoolInfo<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lcom/lmax/disruptor/dsl/ConsumerInfo;
SourceFile: "WorkerPoolInfo.java"