public final class com.lmax.disruptor.BlockingWaitStrategy implements com.lmax.disruptor.WaitStrategy
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.lmax.disruptor.BlockingWaitStrategy
  super_class: java.lang.Object
{
  private final java.util.concurrent.locks.Lock lock;
    descriptor: Ljava/util/concurrent/locks/Lock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.locks.Condition processorNotifyCondition;
    descriptor: Ljava/util/concurrent/locks/Condition;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.BlockingWaitStrategy this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
         2: .line 32
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.newCondition:()Ljava/util/concurrent/locks/Condition;
            putfield com.lmax.disruptor.BlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
         3: .line 29
            return
        end local 0 // com.lmax.disruptor.BlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/lmax/disruptor/BlockingWaitStrategy;

  public long waitFor(long, com.lmax.disruptor.Sequence, com.lmax.disruptor.Sequence, com.lmax.disruptor.SequenceBarrier);
    descriptor: (JLcom/lmax/disruptor/Sequence;Lcom/lmax/disruptor/Sequence;Lcom/lmax/disruptor/SequenceBarrier;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=5
        start local 0 // com.lmax.disruptor.BlockingWaitStrategy this
        start local 1 // long sequence
        start local 3 // com.lmax.disruptor.Sequence cursorSequence
        start local 4 // com.lmax.disruptor.Sequence dependentSequence
        start local 5 // com.lmax.disruptor.SequenceBarrier barrier
         0: .line 39
            aload 3 /* cursorSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lload 1 /* sequence */
            lcmp
            ifge 14
         1: .line 41
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         2: .line 44
            goto 5
         3: .line 46
      StackMap locals:
      StackMap stack:
            aload 5 /* barrier */
            invokeinterface com.lmax.disruptor.SequenceBarrier.checkAlert:()V
         4: .line 47
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            invokeinterface java.util.concurrent.locks.Condition.await:()V
         5: .line 44
      StackMap locals:
      StackMap stack:
            aload 3 /* cursorSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lload 1 /* sequence */
            lcmp
            iflt 3
         6: .line 49
            goto 10
         7: .line 51
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 8
         8: .line 52
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 53
            aload 8
            athrow
        10: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        11: .line 56
            goto 14
        start local 6 // long availableSequence
        12: .line 58
      StackMap locals: long
      StackMap stack:
            aload 5 /* barrier */
            invokeinterface com.lmax.disruptor.SequenceBarrier.checkAlert:()V
        13: .line 59
            invokestatic com.lmax.disruptor.util.ThreadHints.onSpinWait:()V
        end local 6 // long availableSequence
        14: .line 56
      StackMap locals:
      StackMap stack:
            aload 4 /* dependentSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            dup2
            lstore 6 /* availableSequence */
        start local 6 // long availableSequence
        15: lload 1 /* sequence */
            lcmp
            iflt 12
        16: .line 62
            lload 6 /* availableSequence */
            lreturn
        end local 6 // long availableSequence
        end local 5 // com.lmax.disruptor.SequenceBarrier barrier
        end local 4 // com.lmax.disruptor.Sequence dependentSequence
        end local 3 // com.lmax.disruptor.Sequence cursorSequence
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.BlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   17     0               this  Lcom/lmax/disruptor/BlockingWaitStrategy;
            0   17     1           sequence  J
            0   17     3     cursorSequence  Lcom/lmax/disruptor/Sequence;
            0   17     4  dependentSequence  Lcom/lmax/disruptor/Sequence;
            0   17     5            barrier  Lcom/lmax/disruptor/SequenceBarrier;
           12   14     6  availableSequence  J
           15   17     6  availableSequence  J
      Exception table:
        from    to  target  type
           2     7       7  any
    Exceptions:
      throws com.lmax.disruptor.AlertException, java.lang.InterruptedException
    MethodParameters:
                   Name  Flags
      sequence           
      cursorSequence     
      dependentSequence  
      barrier            

  public void signalAllWhenBlocking();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.lmax.disruptor.BlockingWaitStrategy this
         0: .line 68
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 71
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            invokeinterface java.util.concurrent.locks.Condition.signalAll:()V
         2: .line 72
            goto 6
         3: .line 74
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
         4: .line 75
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         5: .line 76
            aload 1
            athrow
         6: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 77
            return
        end local 0 // com.lmax.disruptor.BlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/lmax/disruptor/BlockingWaitStrategy;
      Exception table:
        from    to  target  type
           1     3       3  any

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.BlockingWaitStrategy this
         0: .line 82
            new java.lang.StringBuilder
            dup
            ldc "BlockingWaitStrategy{processorNotifyCondition="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 83
            aload 0 /* this */
            getfield com.lmax.disruptor.BlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 84
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         3: .line 82
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.lmax.disruptor.BlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/lmax/disruptor/BlockingWaitStrategy;
}
SourceFile: "BlockingWaitStrategy.java"