public final class io.reactivex.internal.util.BlockingHelper
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.util.BlockingHelper
  super_class: java.lang.Object
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.reactivex.internal.util.BlockingHelper this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 28
            new java.lang.IllegalStateException
            dup
            ldc "No instances!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // io.reactivex.internal.util.BlockingHelper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/util/BlockingHelper;

  public static void awaitForComplete(java.util.concurrent.CountDownLatch, io.reactivex.disposables.Disposable);
    descriptor: (Ljava/util/concurrent/CountDownLatch;Lio/reactivex/disposables/Disposable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.util.concurrent.CountDownLatch latch
        start local 1 // io.reactivex.disposables.Disposable subscription
         0: .line 32
            aload 0 /* latch */
            invokevirtual java.util.concurrent.CountDownLatch.getCount:()J
            lconst_0
            lcmp
            ifne 2
         1: .line 35
            return
         2: .line 39
      StackMap locals:
      StackMap stack:
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         3: .line 40
            aload 0 /* latch */
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         4: .line 41
            goto 9
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         5: astore 2 /* e */
        start local 2 // java.lang.InterruptedException e
         6: .line 42
            aload 1 /* subscription */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         7: .line 45
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         8: .line 47
            new java.lang.IllegalStateException
            dup
            ldc "Interrupted while waiting for subscription to complete."
            aload 2 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.InterruptedException e
         9: .line 49
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable subscription
        end local 0 // java.util.concurrent.CountDownLatch latch
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0         latch  Ljava/util/concurrent/CountDownLatch;
            0   10     1  subscription  Lio/reactivex/disposables/Disposable;
            6    9     2             e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           2     4       5  Class java.lang.InterruptedException
    MethodParameters:
              Name  Flags
      latch         
      subscription  

  public static void verifyNonBlocking();
    descriptor: ()V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 57
            invokestatic io.reactivex.plugins.RxJavaPlugins.isFailOnNonBlockingScheduler:()Z
            ifeq 4
         1: .line 58
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            instanceof io.reactivex.internal.schedulers.NonBlockingThread
            ifne 3
         2: .line 59
            invokestatic io.reactivex.plugins.RxJavaPlugins.onBeforeBlocking:()Z
            ifeq 4
         3: .line 60
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Attempt to block on a Scheduler "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " that doesn't support blocking operators as they may lead to deadlock"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 62
      StackMap locals:
      StackMap stack:
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BlockingHelper.java"