public class com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy implements com.lmax.disruptor.WaitStrategy
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy
  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

  private final java.util.concurrent.atomic.AtomicBoolean signalNeeded;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long timeoutInNanos;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit units
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 15
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
         2: .line 16
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.newCondition:()Ljava/util/concurrent/locks/Condition;
            putfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
         3: .line 17
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.signalNeeded:Ljava/util/concurrent/atomic/AtomicBoolean;
         4: .line 22
            aload 0 /* this */
            aload 3 /* units */
            lload 1 /* timeout */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            putfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.timeoutInNanos:J
         5: .line 23
            return
        end local 3 // java.util.concurrent.TimeUnit units
        end local 1 // long timeout
        end local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/lmax/disruptor/LiteTimeoutBlockingWaitStrategy;
            0    6     1  timeout  J
            0    6     3    units  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
         Name  Flags
      timeout  final
      units    final

  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=11, args_size=5
        start local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy 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 33
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.timeoutInNanos:J
            lstore 6 /* nanos */
        start local 6 // long nanos
         1: .line 36
            aload 3 /* cursorSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lload 1 /* sequence */
            lcmp
            ifge 17
         2: .line 38
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         3: .line 41
            goto 9
         4: .line 43
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.signalNeeded:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.getAndSet:(Z)Z
            pop
         5: .line 45
            aload 5 /* barrier */
            invokeinterface com.lmax.disruptor.SequenceBarrier.checkAlert:()V
         6: .line 46
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            lload 6 /* nanos */
            invokeinterface java.util.concurrent.locks.Condition.awaitNanos:(J)J
            lstore 6 /* nanos */
         7: .line 47
            lload 6 /* nanos */
            lconst_0
            lcmp
            ifgt 9
         8: .line 49
            getstatic com.lmax.disruptor.TimeoutException.INSTANCE:Lcom/lmax/disruptor/TimeoutException;
            athrow
         9: .line 41
      StackMap locals:
      StackMap stack:
            aload 3 /* cursorSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lload 1 /* sequence */
            lcmp
            iflt 4
        10: .line 52
            goto 14
        11: .line 54
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 10
        12: .line 55
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        13: .line 56
            aload 10
            athrow
        14: .line 55
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        15: .line 59
            goto 17
        start local 8 // long availableSequence
        16: .line 61
      StackMap locals: long
      StackMap stack:
            aload 5 /* barrier */
            invokeinterface com.lmax.disruptor.SequenceBarrier.checkAlert:()V
        end local 8 // long availableSequence
        17: .line 59
      StackMap locals:
      StackMap stack:
            aload 4 /* dependentSequence */
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            dup2
            lstore 8 /* availableSequence */
        start local 8 // long availableSequence
        18: lload 1 /* sequence */
            lcmp
            iflt 16
        19: .line 64
            lload 8 /* availableSequence */
            lreturn
        end local 8 // long availableSequence
        end local 6 // long nanos
        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.LiteTimeoutBlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   20     0               this  Lcom/lmax/disruptor/LiteTimeoutBlockingWaitStrategy;
            0   20     1           sequence  J
            0   20     3     cursorSequence  Lcom/lmax/disruptor/Sequence;
            0   20     4  dependentSequence  Lcom/lmax/disruptor/Sequence;
            0   20     5            barrier  Lcom/lmax/disruptor/SequenceBarrier;
            1   20     6              nanos  J
           16   17     8  availableSequence  J
           18   20     8  availableSequence  J
      Exception table:
        from    to  target  type
           3    11      11  any
    Exceptions:
      throws com.lmax.disruptor.AlertException, java.lang.InterruptedException, com.lmax.disruptor.TimeoutException
    MethodParameters:
                   Name  Flags
      sequence           final
      cursorSequence     final
      dependentSequence  final
      barrier            final

  public void signalAllWhenBlocking();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy this
         0: .line 70
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.signalNeeded:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.getAndSet:(Z)Z
            ifeq 8
         1: .line 72
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         2: .line 75
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            invokeinterface java.util.concurrent.locks.Condition.signalAll:()V
         3: .line 76
            goto 7
         4: .line 78
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
         5: .line 79
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         6: .line 80
            aload 1
            athrow
         7: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.lock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         8: .line 82
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/lmax/disruptor/LiteTimeoutBlockingWaitStrategy;
      Exception table:
        from    to  target  type
           2     4       4  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.LiteTimeoutBlockingWaitStrategy this
         0: .line 87
            new java.lang.StringBuilder
            dup
            ldc "LiteTimeoutBlockingWaitStrategy{processorNotifyCondition="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 88
            aload 0 /* this */
            getfield com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy.processorNotifyCondition:Ljava/util/concurrent/locks/Condition;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 89
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         3: .line 87
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.lmax.disruptor.LiteTimeoutBlockingWaitStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/lmax/disruptor/LiteTimeoutBlockingWaitStrategy;
}
SourceFile: "LiteTimeoutBlockingWaitStrategy.java"