public final class io.reactivex.internal.operators.flowable.FlowableBlockingSubscribe
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableBlockingSubscribe
  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.operators.flowable.FlowableBlockingSubscribe this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            new java.lang.IllegalStateException
            dup
            ldc "No instances!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // io.reactivex.internal.operators.flowable.FlowableBlockingSubscribe this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableBlockingSubscribe;

  public static <T> void subscribe(org.reactivestreams.Publisher<? extends T>, org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Subscriber;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.reactivestreams.Publisher o
        start local 1 // org.reactivestreams.Subscriber subscriber
         0: .line 44
            new java.util.concurrent.LinkedBlockingQueue
            dup
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:()V
            astore 2 /* queue */
        start local 2 // java.util.concurrent.BlockingQueue queue
         1: .line 46
            new io.reactivex.internal.subscribers.BlockingSubscriber
            dup
            aload 2 /* queue */
            invokespecial io.reactivex.internal.subscribers.BlockingSubscriber.<init>:(Ljava/util/Queue;)V
            astore 3 /* bs */
        start local 3 // io.reactivex.internal.subscribers.BlockingSubscriber bs
         2: .line 48
            aload 0 /* o */
            aload 3 /* bs */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         3: .line 52
      StackMap locals: java.util.concurrent.BlockingQueue io.reactivex.internal.subscribers.BlockingSubscriber
      StackMap stack:
            aload 3 /* bs */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.isCancelled:()Z
            ifeq 5
         4: .line 53
            goto 19
         5: .line 55
      StackMap locals:
      StackMap stack:
            aload 2 /* queue */
            invokeinterface java.util.concurrent.BlockingQueue.poll:()Ljava/lang/Object;
            astore 4 /* v */
        start local 4 // java.lang.Object v
         6: .line 56
            aload 4 /* v */
            ifnonnull 11
         7: .line 57
            aload 3 /* bs */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.isCancelled:()Z
            ifeq 9
         8: .line 58
            goto 19
         9: .line 60
      StackMap locals: java.lang.Object
      StackMap stack:
            invokestatic io.reactivex.internal.util.BlockingHelper.verifyNonBlocking:()V
        10: .line 61
            aload 2 /* queue */
            invokeinterface java.util.concurrent.BlockingQueue.take:()Ljava/lang/Object;
            astore 4 /* v */
        11: .line 63
      StackMap locals:
      StackMap stack:
            aload 3 /* bs */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.isCancelled:()Z
            ifeq 13
        12: .line 64
            goto 19
        13: .line 66
      StackMap locals:
      StackMap stack:
            aload 4 /* v */
            getstatic io.reactivex.internal.subscribers.BlockingSubscriber.TERMINATED:Ljava/lang/Object;
            if_acmpeq 19
        14: .line 67
            aload 4 /* v */
            aload 1 /* subscriber */
            invokestatic io.reactivex.internal.util.NotificationLite.acceptFull:(Ljava/lang/Object;Lorg/reactivestreams/Subscriber;)Z
            ifeq 3
        end local 4 // java.lang.Object v
        15: .line 71
            goto 19
      StackMap locals: org.reactivestreams.Publisher org.reactivestreams.Subscriber java.util.concurrent.BlockingQueue io.reactivex.internal.subscribers.BlockingSubscriber
      StackMap stack: java.lang.InterruptedException
        16: astore 4 /* e */
        start local 4 // java.lang.InterruptedException e
        17: .line 72
            aload 3 /* bs */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.cancel:()V
        18: .line 73
            aload 1 /* subscriber */
            aload 4 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.InterruptedException e
        19: .line 75
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.reactivex.internal.subscribers.BlockingSubscriber bs
        end local 2 // java.util.concurrent.BlockingQueue queue
        end local 1 // org.reactivestreams.Subscriber subscriber
        end local 0 // org.reactivestreams.Publisher o
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0           o  Lorg/reactivestreams/Publisher<+TT;>;
            0   20     1  subscriber  Lorg/reactivestreams/Subscriber<-TT;>;
            1   20     2       queue  Ljava/util/concurrent/BlockingQueue<Ljava/lang/Object;>;
            2   20     3          bs  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            6   15     4           v  Ljava/lang/Object;
           17   19     4           e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           3    15      16  Class java.lang.InterruptedException
    Signature: <T:Ljava/lang/Object;>(Lorg/reactivestreams/Publisher<+TT;>;Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
            Name  Flags
      o           
      subscriber  

  public static <T> void subscribe(org.reactivestreams.Publisher<? extends T>);
    descriptor: (Lorg/reactivestreams/Publisher;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.reactivestreams.Publisher o
         0: .line 83
            new io.reactivex.internal.util.BlockingIgnoringReceiver
            dup
            invokespecial io.reactivex.internal.util.BlockingIgnoringReceiver.<init>:()V
            astore 1 /* callback */
        start local 1 // io.reactivex.internal.util.BlockingIgnoringReceiver callback
         1: .line 84
            new io.reactivex.internal.subscribers.LambdaSubscriber
            dup
            invokestatic io.reactivex.internal.functions.Functions.emptyConsumer:()Lio/reactivex/functions/Consumer;
         2: .line 85
            aload 1 /* callback */
            aload 1 /* callback */
            getstatic io.reactivex.internal.functions.Functions.REQUEST_MAX:Lio/reactivex/functions/Consumer;
         3: .line 84
            invokespecial io.reactivex.internal.subscribers.LambdaSubscriber.<init>:(Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer;)V
            astore 2 /* ls */
        start local 2 // io.reactivex.internal.subscribers.LambdaSubscriber ls
         4: .line 87
            aload 0 /* o */
            aload 2 /* ls */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         5: .line 89
            aload 1 /* callback */
            aload 2 /* ls */
            invokestatic io.reactivex.internal.util.BlockingHelper.awaitForComplete:(Ljava/util/concurrent/CountDownLatch;Lio/reactivex/disposables/Disposable;)V
         6: .line 90
            aload 1 /* callback */
            getfield io.reactivex.internal.util.BlockingIgnoringReceiver.error:Ljava/lang/Throwable;
            astore 3 /* e */
        start local 3 // java.lang.Throwable e
         7: .line 91
            aload 3 /* e */
            ifnull 9
         8: .line 92
            aload 3 /* e */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
         9: .line 94
      StackMap locals: io.reactivex.internal.util.BlockingIgnoringReceiver io.reactivex.internal.subscribers.LambdaSubscriber java.lang.Throwable
      StackMap stack:
            return
        end local 3 // java.lang.Throwable e
        end local 2 // io.reactivex.internal.subscribers.LambdaSubscriber ls
        end local 1 // io.reactivex.internal.util.BlockingIgnoringReceiver callback
        end local 0 // org.reactivestreams.Publisher o
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0         o  Lorg/reactivestreams/Publisher<+TT;>;
            1   10     1  callback  Lio/reactivex/internal/util/BlockingIgnoringReceiver;
            4   10     2        ls  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;
            7   10     3         e  Ljava/lang/Throwable;
    Signature: <T:Ljava/lang/Object;>(Lorg/reactivestreams/Publisher<+TT;>;)V
    MethodParameters:
      Name  Flags
      o     

  public static <T> void subscribe(org.reactivestreams.Publisher<? extends T>, io.reactivex.functions.Consumer<? super T>, io.reactivex.functions.Consumer<? super java.lang.Throwable>, io.reactivex.functions.Action);
    descriptor: (Lorg/reactivestreams/Publisher;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.reactivestreams.Publisher o
        start local 1 // io.reactivex.functions.Consumer onNext
        start local 2 // io.reactivex.functions.Consumer onError
        start local 3 // io.reactivex.functions.Action onComplete
         0: .line 106
            aload 1 /* onNext */
            ldc "onNext is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 107
            aload 2 /* onError */
            ldc "onError is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 108
            aload 3 /* onComplete */
            ldc "onComplete is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 109
            aload 0 /* o */
            new io.reactivex.internal.subscribers.LambdaSubscriber
            dup
            aload 1 /* onNext */
            aload 2 /* onError */
            aload 3 /* onComplete */
            getstatic io.reactivex.internal.functions.Functions.REQUEST_MAX:Lio/reactivex/functions/Consumer;
            invokespecial io.reactivex.internal.subscribers.LambdaSubscriber.<init>:(Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer;)V
            invokestatic io.reactivex.internal.operators.flowable.FlowableBlockingSubscribe.subscribe:(Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Subscriber;)V
         4: .line 110
            return
        end local 3 // io.reactivex.functions.Action onComplete
        end local 2 // io.reactivex.functions.Consumer onError
        end local 1 // io.reactivex.functions.Consumer onNext
        end local 0 // org.reactivestreams.Publisher o
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0           o  Lorg/reactivestreams/Publisher<+TT;>;
            0    5     1      onNext  Lio/reactivex/functions/Consumer<-TT;>;
            0    5     2     onError  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
            0    5     3  onComplete  Lio/reactivex/functions/Action;
    Signature: <T:Ljava/lang/Object;>(Lorg/reactivestreams/Publisher<+TT;>;Lio/reactivex/functions/Consumer<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;)V
    MethodParameters:
            Name  Flags
      o           
      onNext      final
      onError     final
      onComplete  final

  public static <T> void subscribe(org.reactivestreams.Publisher<? extends T>, io.reactivex.functions.Consumer<? super T>, io.reactivex.functions.Consumer<? super java.lang.Throwable>, io.reactivex.functions.Action, );
    descriptor: (Lorg/reactivestreams/Publisher;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=5, args_size=5
        start local 0 // org.reactivestreams.Publisher o
        start local 1 // io.reactivex.functions.Consumer onNext
        start local 2 // io.reactivex.functions.Consumer onError
        start local 3 // io.reactivex.functions.Action onComplete
        start local 4 // int bufferSize
         0: .line 123
            aload 1 /* onNext */
            ldc "onNext is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 124
            aload 2 /* onError */
            ldc "onError is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 125
            aload 3 /* onComplete */
            ldc "onComplete is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 126
            iload 4 /* bufferSize */
            ldc "number > 0 required"
            invokestatic io.reactivex.internal.functions.ObjectHelper.verifyPositive:(ILjava/lang/String;)I
            pop
         4: .line 127
            aload 0 /* o */
            new io.reactivex.internal.subscribers.BoundedSubscriber
            dup
            aload 1 /* onNext */
            aload 2 /* onError */
            aload 3 /* onComplete */
            iload 4 /* bufferSize */
            invokestatic io.reactivex.internal.functions.Functions.boundedConsumer:(I)Lio/reactivex/functions/Consumer;
         5: .line 128
            iload 4 /* bufferSize */
            invokespecial io.reactivex.internal.subscribers.BoundedSubscriber.<init>:(Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer;I)V
         6: .line 127
            invokestatic io.reactivex.internal.operators.flowable.FlowableBlockingSubscribe.subscribe:(Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Subscriber;)V
         7: .line 129
            return
        end local 4 // int bufferSize
        end local 3 // io.reactivex.functions.Action onComplete
        end local 2 // io.reactivex.functions.Consumer onError
        end local 1 // io.reactivex.functions.Consumer onNext
        end local 0 // org.reactivestreams.Publisher o
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0           o  Lorg/reactivestreams/Publisher<+TT;>;
            0    8     1      onNext  Lio/reactivex/functions/Consumer<-TT;>;
            0    8     2     onError  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
            0    8     3  onComplete  Lio/reactivex/functions/Action;
            0    8     4  bufferSize  I
    Signature: <T:Ljava/lang/Object;>(Lorg/reactivestreams/Publisher<+TT;>;Lio/reactivex/functions/Consumer<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;I)V
    MethodParameters:
            Name  Flags
      o           
      onNext      final
      onError     final
      onComplete  final
      bufferSize  
}
SourceFile: "FlowableBlockingSubscribe.java"