public final class io.reactivex.internal.observers.BlockingMultiObserver<T> extends java.util.concurrent.CountDownLatch implements io.reactivex.SingleObserver<T>, io.reactivex.CompletableObserver, io.reactivex.MaybeObserver<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.observers.BlockingMultiObserver
  super_class: java.util.concurrent.CountDownLatch
{
  T value;
    descriptor: Ljava/lang/Object;
    flags: (0x0000) 
    Signature: TT;

  java.lang.Throwable error;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0000) 

  io.reactivex.disposables.Disposable upstream;
    descriptor: Lio/reactivex/disposables/Disposable;
    flags: (0x0000) 

  volatile boolean cancelled;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
         0: .line 40
            aload 0 /* this */
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
         1: .line 41
            return
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;

  void dispose();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
         0: .line 44
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.observers.BlockingMultiObserver.cancelled:Z
         1: .line 45
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.upstream:Lio/reactivex/disposables/Disposable;
            astore 1 /* d */
        start local 1 // io.reactivex.disposables.Disposable d
         2: .line 46
            aload 1 /* d */
            ifnull 4
         3: .line 47
            aload 1 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         4: .line 49
      StackMap locals: io.reactivex.disposables.Disposable
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            2    5     1     d  Lio/reactivex/disposables/Disposable;

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 53
            aload 0 /* this */
            aload 1 /* d */
            putfield io.reactivex.internal.observers.BlockingMultiObserver.upstream:Lio/reactivex/disposables/Disposable;
         1: .line 54
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.cancelled:Z
            ifeq 3
         2: .line 55
            aload 1 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         3: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0    4     1     d  Lio/reactivex/disposables/Disposable;
    MethodParameters:
      Name  Flags
      d     

  public void onSuccess();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // java.lang.Object value
         0: .line 61
            aload 0 /* this */
            aload 1 /* value */
            putfield io.reactivex.internal.observers.BlockingMultiObserver.value:Ljava/lang/Object;
         1: .line 62
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.countDown:()V
         2: .line 63
            return
        end local 1 // java.lang.Object value
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0    3     1  value  TT;
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      value  

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // java.lang.Throwable e
         0: .line 67
            aload 0 /* this */
            aload 1 /* e */
            putfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
         1: .line 68
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.countDown:()V
         2: .line 69
            return
        end local 1 // java.lang.Throwable e
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0    3     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
         0: .line 73
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.countDown:()V
         1: .line 74
            return
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;

  public T blockingGet();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
         0: .line 82
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.getCount:()J
            lconst_0
            lcmp
            ifeq 7
         1: .line 84
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         2: .line 85
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.await:()V
         3: .line 86
            goto 7
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         4: astore 1 /* ex */
        start local 1 // java.lang.InterruptedException ex
         5: .line 87
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         6: .line 88
            aload 1 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 1 // java.lang.InterruptedException ex
         7: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
            astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         8: .line 92
            aload 1 /* ex */
            ifnull 10
         9: .line 93
            aload 1 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        10: .line 95
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.value:Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Throwable ex
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            5    7     1    ex  Ljava/lang/InterruptedException;
            8   11     1    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.InterruptedException
    Signature: ()TT;

  public T blockingGet();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // java.lang.Object defaultValue
         0: .line 105
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.getCount:()J
            lconst_0
            lcmp
            ifeq 7
         1: .line 107
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         2: .line 108
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.await:()V
         3: .line 109
            goto 7
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         4: astore 2 /* ex */
        start local 2 // java.lang.InterruptedException ex
         5: .line 110
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         6: .line 111
            aload 2 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 2 // java.lang.InterruptedException ex
         7: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
            astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         8: .line 115
            aload 2 /* ex */
            ifnull 10
         9: .line 116
            aload 2 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        10: .line 118
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.value:Ljava/lang/Object;
            astore 3 /* v */
        start local 3 // java.lang.Object v
        11: .line 119
            aload 3 /* v */
            ifnull 12
            aload 3 /* v */
            goto 13
      StackMap locals: java.lang.Object
      StackMap stack:
        12: aload 1 /* defaultValue */
      StackMap locals:
      StackMap stack: java.lang.Object
        13: areturn
        end local 3 // java.lang.Object v
        end local 2 // java.lang.Throwable ex
        end local 1 // java.lang.Object defaultValue
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0   14     1  defaultValue  TT;
            5    7     2            ex  Ljava/lang/InterruptedException;
            8   14     2            ex  Ljava/lang/Throwable;
           11   14     3             v  TT;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.InterruptedException
    Signature: (TT;)TT;
    MethodParameters:
              Name  Flags
      defaultValue  

  public java.lang.Throwable blockingGetError();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
         0: .line 128
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.getCount:()J
            lconst_0
            lcmp
            ifeq 7
         1: .line 130
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         2: .line 131
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.await:()V
         3: .line 132
            goto 7
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         4: astore 1 /* ex */
        start local 1 // java.lang.InterruptedException ex
         5: .line 133
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         6: .line 134
            aload 1 /* ex */
            areturn
        end local 1 // java.lang.InterruptedException ex
         7: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
            areturn
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            5    7     1    ex  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.InterruptedException

  public java.lang.Throwable blockingGetError(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 148
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.getCount:()J
            lconst_0
            lcmp
            ifeq 8
         1: .line 150
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         2: .line 151
            aload 0 /* this */
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.await:(JLjava/util/concurrent/TimeUnit;)Z
            ifne 8
         3: .line 152
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         4: .line 153
            new java.util.concurrent.TimeoutException
            dup
            lload 1 /* timeout */
            aload 3 /* unit */
            invokestatic io.reactivex.internal.util.ExceptionHelper.timeoutMessage:(JLjava/util/concurrent/TimeUnit;)Ljava/lang/String;
            invokespecial java.util.concurrent.TimeoutException.<init>:(Ljava/lang/String;)V
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
         5: .line 155
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 4 /* ex */
        start local 4 // java.lang.InterruptedException ex
         6: .line 156
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         7: .line 157
            aload 4 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 4 // java.lang.InterruptedException ex
         8: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
            areturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0    9     1  timeout  J
            0    9     3     unit  Ljava/util/concurrent/TimeUnit;
            6    8     4       ex  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           1     5       5  Class java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public boolean blockingAwait(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 171
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.getCount:()J
            lconst_0
            lcmp
            ifeq 8
         1: .line 173
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
         2: .line 174
            aload 0 /* this */
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.await:(JLjava/util/concurrent/TimeUnit;)Z
            ifne 8
         3: .line 175
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         4: .line 176
            iconst_0
            ireturn
         5: .line 178
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 4 /* ex */
        start local 4 // java.lang.InterruptedException ex
         6: .line 179
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.BlockingMultiObserver.dispose:()V
         7: .line 180
            aload 4 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 4 // java.lang.InterruptedException ex
         8: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.BlockingMultiObserver.error:Ljava/lang/Throwable;
            astore 4 /* ex */
        start local 4 // java.lang.Throwable ex
         9: .line 184
            aload 4 /* ex */
            ifnull 11
        10: .line 185
            aload 4 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        11: .line 187
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // java.lang.Throwable ex
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.reactivex.internal.observers.BlockingMultiObserver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lio/reactivex/internal/observers/BlockingMultiObserver<TT;>;
            0   12     1  timeout  J
            0   12     3     unit  Ljava/util/concurrent/TimeUnit;
            6    8     4       ex  Ljava/lang/InterruptedException;
            9   12     4       ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4       5  Class java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      timeout  
      unit     
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/CountDownLatch;Lio/reactivex/SingleObserver<TT;>;Lio/reactivex/CompletableObserver;Lio/reactivex/MaybeObserver<TT;>;
SourceFile: "BlockingMultiObserver.java"