abstract class io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber<T, R> extends java.util.concurrent.atomic.AtomicInteger implements io.reactivex.FlowableSubscriber<T>, io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport<R>, org.reactivestreams.Subscription
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -3511336836796789179

  final io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner<R> inner;
    descriptor: Lio/reactivex/internal/operators/flowable/FlowableConcatMap$ConcatMapInner;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/operators/flowable/FlowableConcatMap$ConcatMapInner<TR;>;

  final io.reactivex.functions.Function<? super T, ? extends org.reactivestreams.Publisher<? extends R>> mapper;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-TT;+Lorg/reactivestreams/Publisher<+TR;>;>;

  final int prefetch;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final int limit;
    descriptor: I
    flags: (0x0010) ACC_FINAL

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

  int consumed;
    descriptor: I
    flags: (0x0000) 

  io.reactivex.internal.fuseable.SimpleQueue<T> queue;
    descriptor: Lio/reactivex/internal/fuseable/SimpleQueue;
    flags: (0x0000) 
    Signature: Lio/reactivex/internal/fuseable/SimpleQueue<TT;>;

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

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

  final io.reactivex.internal.util.AtomicThrowable errors;
    descriptor: Lio/reactivex/internal/util/AtomicThrowable;
    flags: (0x0010) ACC_FINAL

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

  int sourceMode;
    descriptor: I
    flags: (0x0000) 

  void <init>(io.reactivex.functions.Function<? super T, ? extends org.reactivestreams.Publisher<? extends R>>, );
    descriptor: (Lio/reactivex/functions/Function;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
        start local 1 // io.reactivex.functions.Function mapper
        start local 2 // int prefetch
         0: .line 99
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 102
            aload 0 /* this */
            aload 1 /* mapper */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.mapper:Lio/reactivex/functions/Function;
         2: .line 103
            aload 0 /* this */
            iload 2 /* prefetch */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.prefetch:I
         3: .line 104
            aload 0 /* this */
            iload 2 /* prefetch */
            iload 2 /* prefetch */
            iconst_2
            ishr
            isub
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.limit:I
         4: .line 105
            aload 0 /* this */
            new io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner
            dup
            aload 0 /* this */
            invokespecial io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner.<init>:(Lio/reactivex/internal/operators/flowable/FlowableConcatMap$ConcatMapSupport;)V
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.inner:Lio/reactivex/internal/operators/flowable/FlowableConcatMap$ConcatMapInner;
         5: .line 106
            aload 0 /* this */
            new io.reactivex.internal.util.AtomicThrowable
            dup
            invokespecial io.reactivex.internal.util.AtomicThrowable.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.errors:Lio/reactivex/internal/util/AtomicThrowable;
         6: .line 107
            return
        end local 2 // int prefetch
        end local 1 // io.reactivex.functions.Function mapper
        end local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/reactivex/internal/operators/flowable/FlowableConcatMap$BaseConcatMapSubscriber<TT;TR;>;
            0    7     1    mapper  Lio/reactivex/functions/Function<-TT;+Lorg/reactivestreams/Publisher<+TR;>;>;
            0    7     2  prefetch  I
    Signature: (Lio/reactivex/functions/Function<-TT;+Lorg/reactivestreams/Publisher<+TR;>;>;I)V
    MethodParameters:
          Name  Flags
      mapper    
      prefetch  

  public final void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 111
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.upstream:Lorg/reactivestreams/Subscription;
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(Lorg/reactivestreams/Subscription;Lorg/reactivestreams/Subscription;)Z
            ifeq 21
         1: .line 112
            aload 0 /* this */
            aload 1 /* s */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 114
            aload 1 /* s */
            instanceof io.reactivex.internal.fuseable.QueueSubscription
            ifeq 18
         3: .line 115
            aload 1 /* s */
            checkcast io.reactivex.internal.fuseable.QueueSubscription
            astore 2 /* f */
        start local 2 // io.reactivex.internal.fuseable.QueueSubscription f
         4: .line 116
            aload 2 /* f */
            bipush 7
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.requestFusion:(I)I
            istore 3 /* m */
        start local 3 // int m
         5: .line 117
            iload 3 /* m */
            iconst_1
            if_icmpne 12
         6: .line 118
            aload 0 /* this */
            iload 3 /* m */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.sourceMode:I
         7: .line 119
            aload 0 /* this */
            aload 2 /* f */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.queue:Lio/reactivex/internal/fuseable/SimpleQueue;
         8: .line 120
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.done:Z
         9: .line 122
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.subscribeActual:()V
        10: .line 124
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.drain:()V
        11: .line 125
            return
        12: .line 127
      StackMap locals: io.reactivex.internal.fuseable.QueueSubscription int
      StackMap stack:
            iload 3 /* m */
            iconst_2
            if_icmpne 18
        13: .line 128
            aload 0 /* this */
            iload 3 /* m */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.sourceMode:I
        14: .line 129
            aload 0 /* this */
            aload 2 /* f */
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.queue:Lio/reactivex/internal/fuseable/SimpleQueue;
        15: .line 131
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.subscribeActual:()V
        16: .line 133
            aload 1 /* s */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.prefetch:I
            i2l
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        17: .line 134
            return
        end local 3 // int m
        end local 2 // io.reactivex.internal.fuseable.QueueSubscription f
        18: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new io.reactivex.internal.queue.SpscArrayQueue
            dup
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.prefetch:I
            invokespecial io.reactivex.internal.queue.SpscArrayQueue.<init>:(I)V
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.queue:Lio/reactivex/internal/fuseable/SimpleQueue;
        19: .line 140
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.subscribeActual:()V
        20: .line 142
            aload 1 /* s */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.prefetch:I
            i2l
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        21: .line 144
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lio/reactivex/internal/operators/flowable/FlowableConcatMap$BaseConcatMapSubscriber<TT;TR;>;
            0   22     1     s  Lorg/reactivestreams/Subscription;
            4   18     2     f  Lio/reactivex/internal/fuseable/QueueSubscription<TT;>;
            5   18     3     m  I
    MethodParameters:
      Name  Flags
      s     

  abstract void drain();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT

  abstract void subscribeActual();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT

  public final void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
        start local 1 // java.lang.Object t
         0: .line 152
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.sourceMode:I
            iconst_2
            if_icmpeq 5
         1: .line 153
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.queue:Lio/reactivex/internal/fuseable/SimpleQueue;
            aload 1 /* t */
            invokeinterface io.reactivex.internal.fuseable.SimpleQueue.offer:(Ljava/lang/Object;)Z
            ifne 5
         2: .line 154
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         3: .line 155
            aload 0 /* this */
            new java.lang.IllegalStateException
            dup
            ldc "Queue full?!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.onError:(Ljava/lang/Throwable;)V
         4: .line 156
            return
         5: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.drain:()V
         6: .line 160
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableConcatMap$BaseConcatMapSubscriber<TT;TR;>;
            0    7     1     t  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public final void onComplete();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
         0: .line 164
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.done:Z
         1: .line 165
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.drain:()V
         2: .line 166
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableConcatMap$BaseConcatMapSubscriber<TT;TR;>;

  public final void innerComplete();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
         0: .line 170
            aload 0 /* this */
            iconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.active:Z
         1: .line 171
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber.drain:()V
         2: .line 172
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableConcatMap$BaseConcatMapSubscriber<TT;TR;>;
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/FlowableSubscriber<TT;>;Lio/reactivex/internal/operators/flowable/FlowableConcatMap$ConcatMapSupport<TR;>;Lorg/reactivestreams/Subscription;
SourceFile: "FlowableConcatMap.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableConcatMap
InnerClasses:
  abstract BaseConcatMapSubscriber = io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber of io.reactivex.internal.operators.flowable.FlowableConcatMap
  final ConcatMapInner = io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner of io.reactivex.internal.operators.flowable.FlowableConcatMap
  abstract ConcatMapSupport = io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport of io.reactivex.internal.operators.flowable.FlowableConcatMap