public final class com.lmax.disruptor.YieldingWaitStrategy 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.YieldingWaitStrategy
  super_class: java.lang.Object
{
  private static final int SPIN_TRIES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 100

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.YieldingWaitStrategy this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.lmax.disruptor.YieldingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/YieldingWaitStrategy;

  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.YieldingWaitStrategy this
        start local 1 // long sequence
        start local 3 // com.lmax.disruptor.Sequence cursor
        start local 4 // com.lmax.disruptor.Sequence dependentSequence
        start local 5 // com.lmax.disruptor.SequenceBarrier barrier
         0: .line 36
            bipush 100
            istore 8 /* counter */
        start local 8 // int counter
         1: .line 38
            goto 3
        start local 6 // long availableSequence
         2: .line 40
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            aload 5 /* barrier */
            iload 8 /* counter */
            invokevirtual com.lmax.disruptor.YieldingWaitStrategy.applyWaitMethod:(Lcom/lmax/disruptor/SequenceBarrier;I)I
            istore 8 /* counter */
        end local 6 // long availableSequence
         3: .line 38
      StackMap locals: com.lmax.disruptor.YieldingWaitStrategy long com.lmax.disruptor.Sequence com.lmax.disruptor.Sequence com.lmax.disruptor.SequenceBarrier top top int
      StackMap stack:
            aload 4 /* dependentSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            dup2
            lstore 6 /* availableSequence */
        start local 6 // long availableSequence
         4: lload 1 /* sequence */
            lcmp
            iflt 2
         5: .line 43
            lload 6 /* availableSequence */
            lreturn
        end local 8 // int counter
        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 cursor
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.YieldingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lcom/lmax/disruptor/YieldingWaitStrategy;
            0    6     1           sequence  J
            0    6     3             cursor  Lcom/lmax/disruptor/Sequence;
            0    6     4  dependentSequence  Lcom/lmax/disruptor/Sequence;
            0    6     5            barrier  Lcom/lmax/disruptor/SequenceBarrier;
            2    3     6  availableSequence  J
            4    6     6  availableSequence  J
            1    6     8            counter  I
    Exceptions:
      throws com.lmax.disruptor.AlertException, java.lang.InterruptedException
    MethodParameters:
                   Name  Flags
      sequence           final
      cursor             
      dependentSequence  final
      barrier            final

  public void signalAllWhenBlocking();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.YieldingWaitStrategy this
         0: .line 49
            return
        end local 0 // com.lmax.disruptor.YieldingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/YieldingWaitStrategy;

  private int applyWaitMethod(com.lmax.disruptor.SequenceBarrier, int);
    descriptor: (Lcom/lmax/disruptor/SequenceBarrier;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.lmax.disruptor.YieldingWaitStrategy this
        start local 1 // com.lmax.disruptor.SequenceBarrier barrier
        start local 2 // int counter
         0: .line 54
            aload 1 /* barrier */
            invokeinterface com.lmax.disruptor.SequenceBarrier.checkAlert:()V
         1: .line 56
            iload 2 /* counter */
            ifne 4
         2: .line 58
            invokestatic java.lang.Thread.yield:()V
         3: .line 59
            goto 5
         4: .line 62
      StackMap locals:
      StackMap stack:
            iinc 2 /* counter */ -1
         5: .line 65
      StackMap locals:
      StackMap stack:
            iload 2 /* counter */
            ireturn
        end local 2 // int counter
        end local 1 // com.lmax.disruptor.SequenceBarrier barrier
        end local 0 // com.lmax.disruptor.YieldingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/lmax/disruptor/YieldingWaitStrategy;
            0    6     1  barrier  Lcom/lmax/disruptor/SequenceBarrier;
            0    6     2  counter  I
    Exceptions:
      throws com.lmax.disruptor.AlertException
    MethodParameters:
         Name  Flags
      barrier  final
      counter  
}
SourceFile: "YieldingWaitStrategy.java"