final class io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<T> extends io.reactivex.internal.subscriptions.BasicIntQueueSubscription<T> implements io.reactivex.FlowableSubscriber<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber
  super_class: io.reactivex.internal.subscriptions.BasicIntQueueSubscription
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -2514538129242366402

  final org.reactivestreams.Subscriber<? super T> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TT;>;

  final io.reactivex.internal.fuseable.SimplePlainQueue<T> queue;
    descriptor: Lio/reactivex/internal/fuseable/SimplePlainQueue;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/fuseable/SimplePlainQueue<TT;>;

  final boolean delayError;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  final io.reactivex.functions.Action onOverflow;
    descriptor: Lio/reactivex/functions/Action;
    flags: (0x0010) ACC_FINAL

  org.reactivestreams.Subscription upstream;
    descriptor: Lorg/reactivestreams/Subscription;
    flags: (0x0000) 

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

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

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

  final java.util.concurrent.atomic.AtomicLong requested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  boolean outputFused;
    descriptor: Z
    flags: (0x0000) 

  void <init>(org.reactivestreams.Subscriber<? super T>, int, boolean, boolean, io.reactivex.functions.Action);
    descriptor: (Lorg/reactivestreams/Subscriber;IZZLio/reactivex/functions/Action;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=6
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // int bufferSize
        start local 3 // boolean unbounded
        start local 4 // boolean delayError
        start local 5 // io.reactivex.functions.Action onOverflow
         0: .line 69
            aload 0 /* this */
            invokespecial io.reactivex.internal.subscriptions.BasicIntQueueSubscription.<init>:()V
         1: .line 65
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
         2: .line 71
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         3: .line 72
            aload 0 /* this */
            aload 5 /* onOverflow */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.onOverflow:Lio/reactivex/functions/Action;
         4: .line 73
            aload 0 /* this */
            iload 4 /* delayError */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.delayError:Z
         5: .line 77
            iload 3 /* unbounded */
            ifeq 8
         6: .line 78
            new io.reactivex.internal.queue.SpscLinkedArrayQueue
            dup
            iload 2 /* bufferSize */
            invokespecial io.reactivex.internal.queue.SpscLinkedArrayQueue.<init>:(I)V
            astore 6 /* q */
        start local 6 // io.reactivex.internal.fuseable.SimplePlainQueue q
         7: .line 79
            goto 9
        end local 6 // io.reactivex.internal.fuseable.SimplePlainQueue q
         8: .line 80
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber org.reactivestreams.Subscriber int int int io.reactivex.functions.Action
      StackMap stack:
            new io.reactivex.internal.queue.SpscArrayQueue
            dup
            iload 2 /* bufferSize */
            invokespecial io.reactivex.internal.queue.SpscArrayQueue.<init>:(I)V
            astore 6 /* q */
        start local 6 // io.reactivex.internal.fuseable.SimplePlainQueue q
         9: .line 83
      StackMap locals: io.reactivex.internal.fuseable.SimplePlainQueue
      StackMap stack:
            aload 0 /* this */
            aload 6 /* q */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
        10: .line 84
            return
        end local 6 // io.reactivex.internal.fuseable.SimplePlainQueue q
        end local 5 // io.reactivex.functions.Action onOverflow
        end local 4 // boolean delayError
        end local 3 // boolean unbounded
        end local 2 // int bufferSize
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0   11     1      actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0   11     2  bufferSize  I
            0   11     3   unbounded  Z
            0   11     4  delayError  Z
            0   11     5  onOverflow  Lio/reactivex/functions/Action;
            7    8     6           q  Lio/reactivex/internal/fuseable/SimplePlainQueue<TT;>;
            9   11     6           q  Lio/reactivex/internal/fuseable/SimplePlainQueue<TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;IZZLio/reactivex/functions/Action;)V
    MethodParameters:
            Name  Flags
      actual      
      bufferSize  
      unbounded   
      delayError  
      onOverflow  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 88
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.upstream:Lorg/reactivestreams/Subscription;
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(Lorg/reactivestreams/Subscription;Lorg/reactivestreams/Subscription;)Z
            ifeq 4
         1: .line 89
            aload 0 /* this */
            aload 1 /* s */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 90
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 0 /* this */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         3: .line 91
            aload 1 /* s */
            ldc 9223372036854775807
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         4: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0    5     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // java.lang.Object t
         0: .line 97
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            aload 1 /* t */
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.offer:(Ljava/lang/Object;)Z
            ifne 10
         1: .line 98
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         2: .line 99
            new io.reactivex.exceptions.MissingBackpressureException
            dup
            ldc "Buffer is full"
            invokespecial io.reactivex.exceptions.MissingBackpressureException.<init>:(Ljava/lang/String;)V
            astore 2 /* ex */
        start local 2 // io.reactivex.exceptions.MissingBackpressureException ex
         3: .line 101
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.onOverflow:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         4: .line 102
            goto 8
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber java.lang.Object io.reactivex.exceptions.MissingBackpressureException
      StackMap stack: java.lang.Throwable
         5: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         6: .line 103
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         7: .line 104
            aload 2 /* ex */
            aload 3 /* e */
            invokevirtual io.reactivex.exceptions.MissingBackpressureException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        end local 3 // java.lang.Throwable e
         8: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ex */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.onError:(Ljava/lang/Throwable;)V
         9: .line 107
            return
        end local 2 // io.reactivex.exceptions.MissingBackpressureException ex
        10: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.outputFused:Z
            ifeq 13
        11: .line 110
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aconst_null
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        12: .line 111
            goto 14
        13: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.drain:()V
        14: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0   15     1     t  TT;
            3   10     2    ex  Lio/reactivex/exceptions/MissingBackpressureException;
            6    8     3     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable
    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.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 118
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.error:Ljava/lang/Throwable;
         1: .line 119
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.done:Z
         2: .line 120
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.outputFused:Z
            ifeq 5
         3: .line 121
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         4: .line 122
            goto 6
         5: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.drain:()V
         6: .line 125
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0    7     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.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 129
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.done:Z
         1: .line 130
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.outputFused:Z
            ifeq 4
         2: .line 131
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         3: .line 132
            goto 5
         4: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.drain:()V
         5: .line 135
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<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.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // long n
         0: .line 139
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.outputFused:Z
            ifne 4
         1: .line 140
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 4
         2: .line 141
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         3: .line 142
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.drain:()V
         4: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0    5     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.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 149
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.cancelled:Z
            ifne 5
         1: .line 150
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.cancelled:Z
         2: .line 151
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         3: .line 153
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.getAndIncrement:()I
            ifne 5
         4: .line 154
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.clear:()V
         5: .line 157
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=11, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 160
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.getAndIncrement:()I
            ifne 31
         1: .line 161
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         2: .line 162
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            astore 2 /* q */
        start local 2 // io.reactivex.internal.fuseable.SimplePlainQueue q
         3: .line 163
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            astore 3 /* a */
        start local 3 // org.reactivestreams.Subscriber a
         4: .line 166
      StackMap locals: int io.reactivex.internal.fuseable.SimplePlainQueue org.reactivestreams.Subscriber
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.done:Z
            aload 2 /* q */
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.isEmpty:()Z
            aload 3 /* a */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.checkTerminated:(ZZLorg/reactivestreams/Subscriber;)Z
            ifeq 6
         5: .line 167
            return
         6: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 4 /* r */
        start local 4 // long r
         7: .line 172
            lconst_0
            lstore 6 /* e */
        start local 6 // long e
         8: .line 174
            goto 20
         9: .line 175
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.done:Z
            istore 8 /* d */
        start local 8 // boolean d
        10: .line 176
            aload 2 /* q */
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.poll:()Ljava/lang/Object;
            astore 9 /* v */
        start local 9 // java.lang.Object v
        11: .line 177
            aload 9 /* v */
            ifnonnull 12
            iconst_1
            goto 13
      StackMap locals: int java.lang.Object
      StackMap stack:
        12: iconst_0
      StackMap locals:
      StackMap stack: int
        13: istore 10 /* empty */
        start local 10 // boolean empty
        14: .line 179
            aload 0 /* this */
            iload 8 /* d */
            iload 10 /* empty */
            aload 3 /* a */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.checkTerminated:(ZZLorg/reactivestreams/Subscriber;)Z
            ifeq 16
        15: .line 180
            return
        16: .line 183
      StackMap locals: int
      StackMap stack:
            iload 10 /* empty */
            ifeq 18
        17: .line 184
            goto 21
        18: .line 187
      StackMap locals:
      StackMap stack:
            aload 3 /* a */
            aload 9 /* v */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        19: .line 189
            lload 6 /* e */
            lconst_1
            ladd
            lstore 6 /* e */
        end local 10 // boolean empty
        end local 9 // java.lang.Object v
        end local 8 // boolean d
        20: .line 174
      StackMap locals:
      StackMap stack:
            lload 6 /* e */
            lload 4 /* r */
            lcmp
            ifne 9
        21: .line 192
      StackMap locals:
      StackMap stack:
            lload 6 /* e */
            lload 4 /* r */
            lcmp
            ifne 26
        22: .line 193
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.done:Z
            istore 8 /* d */
        start local 8 // boolean d
        23: .line 194
            aload 2 /* q */
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.isEmpty:()Z
            istore 9 /* empty */
        start local 9 // boolean empty
        24: .line 196
            aload 0 /* this */
            iload 8 /* d */
            iload 9 /* empty */
            aload 3 /* a */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.checkTerminated:(ZZLorg/reactivestreams/Subscriber;)Z
            ifeq 26
        25: .line 197
            return
        end local 9 // boolean empty
        end local 8 // boolean d
        26: .line 201
      StackMap locals:
      StackMap stack:
            lload 6 /* e */
            lconst_0
            lcmp
            ifeq 29
        27: .line 202
            lload 4 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 29
        28: .line 203
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 6 /* e */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            pop2
        29: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.addAndGet:(I)I
            istore 1 /* missed */
        30: .line 208
            iload 1 /* missed */
            ifne 4
        end local 6 // long e
        end local 4 // long r
        end local 3 // org.reactivestreams.Subscriber a
        end local 2 // io.reactivex.internal.fuseable.SimplePlainQueue q
        end local 1 // int missed
        31: .line 213
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   32     0    this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            2   31     1  missed  I
            3   31     2       q  Lio/reactivex/internal/fuseable/SimplePlainQueue<TT;>;
            4   31     3       a  Lorg/reactivestreams/Subscriber<-TT;>;
            7   31     4       r  J
            8   31     6       e  J
           10   20     8       d  Z
           11   20     9       v  TT;
           14   20    10   empty  Z
           23   26     8       d  Z
           24   26     9   empty  Z

  boolean checkTerminated(boolean, boolean, org.reactivestreams.Subscriber<? super T>);
    descriptor: (ZZLorg/reactivestreams/Subscriber;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // boolean d
        start local 2 // boolean empty
        start local 3 // org.reactivestreams.Subscriber a
         0: .line 216
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.cancelled:Z
            ifeq 3
         1: .line 217
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.clear:()V
         2: .line 218
            iconst_1
            ireturn
         3: .line 220
      StackMap locals:
      StackMap stack:
            iload 1 /* d */
            ifeq 20
         4: .line 221
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.delayError:Z
            ifeq 12
         5: .line 222
            iload 2 /* empty */
            ifeq 20
         6: .line 223
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.error:Ljava/lang/Throwable;
            astore 4 /* e */
        start local 4 // java.lang.Throwable e
         7: .line 224
            aload 4 /* e */
            ifnull 10
         8: .line 225
            aload 3 /* a */
            aload 4 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         9: .line 226
            goto 11
        10: .line 227
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        11: .line 229
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // java.lang.Throwable e
        12: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.error:Ljava/lang/Throwable;
            astore 4 /* e */
        start local 4 // java.lang.Throwable e
        13: .line 233
            aload 4 /* e */
            ifnull 17
        14: .line 234
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.clear:()V
        15: .line 235
            aload 3 /* a */
            aload 4 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        16: .line 236
            iconst_1
            ireturn
        17: .line 238
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iload 2 /* empty */
            ifeq 20
        18: .line 239
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        19: .line 240
            iconst_1
            ireturn
        end local 4 // java.lang.Throwable e
        20: .line 244
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // org.reactivestreams.Subscriber a
        end local 2 // boolean empty
        end local 1 // boolean d
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   21     0   this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0   21     1      d  Z
            0   21     2  empty  Z
            0   21     3      a  Lorg/reactivestreams/Subscriber<-TT;>;
            7   12     4      e  Ljava/lang/Throwable;
           13   20     4      e  Ljava/lang/Throwable;
    Signature: (ZZLorg/reactivestreams/Subscriber<-TT;>;)Z
    MethodParameters:
       Name  Flags
      d      
      empty  
      a      

  public int requestFusion(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
        start local 1 // int mode
         0: .line 249
            iload 1 /* mode */
            iconst_2
            iand
            ifeq 3
         1: .line 250
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.outputFused:Z
         2: .line 251
            iconst_2
            ireturn
         3: .line 253
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int mode
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
            0    4     1  mode  I
    MethodParameters:
      Name  Flags
      mode  

  public T poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 259
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.poll:()Ljava/lang/Object;
            areturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
    Exceptions:
      throws java.lang.Exception
    Signature: ()TT;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 264
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.clear:()V
         1: .line 265
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
         0: .line 269
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.isEmpty:()Z
            ireturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableOnBackpressureBuffer$BackpressureBufferSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription<TT;>;Lio/reactivex/FlowableSubscriber<TT;>;
SourceFile: "FlowableOnBackpressureBuffer.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer
InnerClasses:
  final BackpressureBufferSubscriber = io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber of io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer