final class reactor.util.concurrent.WaitStrategy$Parking extends reactor.util.concurrent.WaitStrategy
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: reactor.util.concurrent.WaitStrategy$Parking
  super_class: reactor.util.concurrent.WaitStrategy
{
  static final reactor.util.concurrent.WaitStrategy$Parking INSTANCE;
    descriptor: Lreactor/util/concurrent/WaitStrategy$Parking;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

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

  private static final int DEFAULT_RETRIES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 200

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 454
            new reactor.util.concurrent.WaitStrategy$Parking
            dup
            invokespecial reactor.util.concurrent.WaitStrategy$Parking.<init>:()V
            putstatic reactor.util.concurrent.WaitStrategy$Parking.INSTANCE:Lreactor/util/concurrent/WaitStrategy$Parking;
         1: .line 502
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // reactor.util.concurrent.WaitStrategy$Parking this
         0: .line 459
            aload 0 /* this */
            sipush 200
            invokespecial reactor.util.concurrent.WaitStrategy$Parking.<init>:(I)V
         1: .line 460
            return
        end local 0 // reactor.util.concurrent.WaitStrategy$Parking this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lreactor/util/concurrent/WaitStrategy$Parking;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // reactor.util.concurrent.WaitStrategy$Parking this
        start local 1 // int retries
         0: .line 462
            aload 0 /* this */
            invokespecial reactor.util.concurrent.WaitStrategy.<init>:()V
         1: .line 463
            aload 0 /* this */
            iload 1 /* retries */
            putfield reactor.util.concurrent.WaitStrategy$Parking.retries:I
         2: .line 464
            return
        end local 1 // int retries
        end local 0 // reactor.util.concurrent.WaitStrategy$Parking this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lreactor/util/concurrent/WaitStrategy$Parking;
            0    3     1  retries  I
    MethodParameters:
         Name  Flags
      retries  

  public long waitFor(long, java.util.function.LongSupplier, java.lang.Runnable);
    descriptor: (JLjava/util/function/LongSupplier;Ljava/lang/Runnable;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // reactor.util.concurrent.WaitStrategy$Parking this
        start local 1 // long sequence
        start local 3 // java.util.function.LongSupplier cursor
        start local 4 // java.lang.Runnable barrier
         0: .line 471
            aload 0 /* this */
            getfield reactor.util.concurrent.WaitStrategy$Parking.retries:I
            istore 7 /* counter */
        start local 7 // int counter
         1: .line 473
            goto 3
        start local 5 // long availableSequence
         2: .line 475
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            aload 4 /* barrier */
            iload 7 /* counter */
            invokevirtual reactor.util.concurrent.WaitStrategy$Parking.applyWaitMethod:(Ljava/lang/Runnable;I)I
            istore 7 /* counter */
        end local 5 // long availableSequence
         3: .line 473
      StackMap locals: reactor.util.concurrent.WaitStrategy$Parking long java.util.function.LongSupplier java.lang.Runnable top top int
      StackMap stack:
            aload 3 /* cursor */
            invokeinterface java.util.function.LongSupplier.getAsLong:()J
            dup2
            lstore 5 /* availableSequence */
        start local 5 // long availableSequence
         4: lload 1 /* sequence */
            lcmp
            iflt 2
         5: .line 478
            lload 5 /* availableSequence */
            lreturn
        end local 7 // int counter
        end local 5 // long availableSequence
        end local 4 // java.lang.Runnable barrier
        end local 3 // java.util.function.LongSupplier cursor
        end local 1 // long sequence
        end local 0 // reactor.util.concurrent.WaitStrategy$Parking this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lreactor/util/concurrent/WaitStrategy$Parking;
            0    6     1           sequence  J
            0    6     3             cursor  Ljava/util/function/LongSupplier;
            0    6     4            barrier  Ljava/lang/Runnable;
            2    3     5  availableSequence  J
            4    6     5  availableSequence  J
            1    6     7            counter  I
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
          Name  Flags
      sequence  final
      cursor    
      barrier   final

  private int applyWaitMethod(java.lang.Runnable, int);
    descriptor: (Ljava/lang/Runnable;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // reactor.util.concurrent.WaitStrategy$Parking this
        start local 1 // java.lang.Runnable barrier
        start local 2 // int counter
         0: .line 484
            aload 1 /* barrier */
            invokeinterface java.lang.Runnable.run:()V
         1: .line 486
            iload 2 /* counter */
            bipush 100
            if_icmple 4
         2: .line 488
            iinc 2 /* counter */ -1
         3: .line 489
            goto 9
         4: .line 490
      StackMap locals:
      StackMap stack:
            iload 2 /* counter */
            ifle 8
         5: .line 492
            iinc 2 /* counter */ -1
         6: .line 493
            invokestatic java.lang.Thread.yield:()V
         7: .line 494
            goto 9
         8: .line 497
      StackMap locals:
      StackMap stack:
            lconst_1
            invokestatic java.util.concurrent.locks.LockSupport.parkNanos:(J)V
         9: .line 500
      StackMap locals:
      StackMap stack:
            iload 2 /* counter */
            ireturn
        end local 2 // int counter
        end local 1 // java.lang.Runnable barrier
        end local 0 // reactor.util.concurrent.WaitStrategy$Parking this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lreactor/util/concurrent/WaitStrategy$Parking;
            0   10     1  barrier  Ljava/lang/Runnable;
            0   10     2  counter  I
    Exceptions:
      throws reactor.util.concurrent.WaitStrategy$AlertException
    MethodParameters:
         Name  Flags
      barrier  final
      counter  
}
SourceFile: "WaitStrategy.java"
NestHost: reactor.util.concurrent.WaitStrategy
InnerClasses:
  final AlertException = reactor.util.concurrent.WaitStrategy$AlertException of reactor.util.concurrent.WaitStrategy
  final Parking = reactor.util.concurrent.WaitStrategy$Parking of reactor.util.concurrent.WaitStrategy