public final class io.reactivex.internal.subscribers.BlockingSubscriber<T> extends java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscription> implements io.reactivex.FlowableSubscriber<T>, org.reactivestreams.Subscription
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.subscribers.BlockingSubscriber
  super_class: java.util.concurrent.atomic.AtomicReference
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4875965440900746268

  public static final java.lang.Object TERMINATED;
    descriptor: Ljava/lang/Object;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  final java.util.Queue<java.lang.Object> queue;
    descriptor: Ljava/util/Queue;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Queue<Ljava/lang/Object;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 29
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic io.reactivex.internal.subscribers.BlockingSubscriber.TERMINATED:Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.util.Queue<java.lang.Object>);
    descriptor: (Ljava/util/Queue;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
        start local 1 // java.util.Queue queue
         0: .line 33
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 34
            aload 0 /* this */
            aload 1 /* queue */
            putfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
         2: .line 35
            return
        end local 1 // java.util.Queue queue
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            0    3     1  queue  Ljava/util/Queue<Ljava/lang/Object;>;
    Signature: (Ljava/util/Queue<Ljava/lang/Object;>;)V
    MethodParameters:
       Name  Flags
      queue  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 39
            aload 0 /* this */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.setOnce:(Ljava/util/concurrent/atomic/AtomicReference;Lorg/reactivestreams/Subscription;)Z
            ifeq 2
         1: .line 40
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
            aload 0 /* this */
            invokestatic io.reactivex.internal.util.NotificationLite.subscription:(Lorg/reactivestreams/Subscription;)Ljava/lang/Object;
            invokeinterface java.util.Queue.offer:(Ljava/lang/Object;)Z
            pop
         2: .line 42
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            0    3     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
        start local 1 // java.lang.Object t
         0: .line 46
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
            aload 1 /* t */
            invokestatic io.reactivex.internal.util.NotificationLite.next:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Queue.offer:(Ljava/lang/Object;)Z
            pop
         1: .line 47
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            0    2     1     t  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  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.subscribers.BlockingSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 51
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
            aload 1 /* t */
            invokestatic io.reactivex.internal.util.NotificationLite.error:(Ljava/lang/Throwable;)Ljava/lang/Object;
            invokeinterface java.util.Queue.offer:(Ljava/lang/Object;)Z
            pop
         1: .line 52
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            0    2     1     t  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
         0: .line 56
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
            invokestatic io.reactivex.internal.util.NotificationLite.complete:()Ljava/lang/Object;
            invokeinterface java.util.Queue.offer:(Ljava/lang/Object;)Z
            pop
         1: .line 57
            return
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;

  public void request(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
        start local 1 // long n
         0: .line 61
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.get:()Ljava/lang/Object;
            checkcast org.reactivestreams.Subscription
            lload 1 /* n */
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         1: .line 62
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
            0    2     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
         0: .line 66
            aload 0 /* this */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.cancel:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            ifeq 2
         1: .line 67
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.BlockingSubscriber.queue:Ljava/util/Queue;
            getstatic io.reactivex.internal.subscribers.BlockingSubscriber.TERMINATED:Ljava/lang/Object;
            invokeinterface java.util.Queue.offer:(Ljava/lang/Object;)Z
            pop
         2: .line 69
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;

  public boolean isCancelled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
         0: .line 72
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.BlockingSubscriber.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.subscribers.BlockingSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/BlockingSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Lorg/reactivestreams/Subscription;>;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;
SourceFile: "BlockingSubscriber.java"