final class io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver<T> extends java.util.concurrent.atomic.AtomicInteger implements io.reactivex.MaybeObserver<T>, org.reactivestreams.Subscription
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3520831347801429610

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

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

  final java.util.concurrent.atomic.AtomicReference<java.lang.Object> current;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Object;>;

  final io.reactivex.internal.disposables.SequentialDisposable disposables;
    descriptor: Lio/reactivex/internal/disposables/SequentialDisposable;
    flags: (0x0010) ACC_FINAL

  final java.util.Iterator<? extends io.reactivex.MaybeSource<? extends T>> sources;
    descriptor: Ljava/util/Iterator;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Iterator<+Lio/reactivex/MaybeSource<+TT;>;>;

  long produced;
    descriptor: J
    flags: (0x0000) 

  void <init>(org.reactivestreams.Subscriber<? super T>, java.util.Iterator<? extends io.reactivex.MaybeSource<? extends T>>);
    descriptor: (Lorg/reactivestreams/Subscriber;Ljava/util/Iterator;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // java.util.Iterator sources
         0: .line 78
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 79
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 80
            aload 0 /* this */
            aload 2 /* sources */
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.sources:Ljava/util/Iterator;
         3: .line 81
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.requested:Ljava/util/concurrent/atomic/AtomicLong;
         4: .line 82
            aload 0 /* this */
            new io.reactivex.internal.disposables.SequentialDisposable
            dup
            invokespecial io.reactivex.internal.disposables.SequentialDisposable.<init>:()V
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.disposables:Lio/reactivex/internal/disposables/SequentialDisposable;
         5: .line 83
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            getstatic io.reactivex.internal.util.NotificationLite.COMPLETE:Lio/reactivex/internal/util/NotificationLite;
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.current:Ljava/util/concurrent/atomic/AtomicReference;
         6: .line 84
            return
        end local 2 // java.util.Iterator sources
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;
            0    7     1   actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    7     2  sources  Ljava/util/Iterator<+Lio/reactivex/MaybeSource<+TT;>;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;Ljava/util/Iterator<+Lio/reactivex/MaybeSource<+TT;>;>;)V
    MethodParameters:
         Name  Flags
      actual   
      sources  

  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.maybe.MaybeConcatIterable$ConcatMaybeObserver this
        start local 1 // long n
         0: .line 88
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 3
         1: .line 89
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 90
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.drain:()V
         3: .line 92
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;
            0    4     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
         0: .line 96
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.disposables:Lio/reactivex/internal/disposables/SequentialDisposable;
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.dispose:()V
         1: .line 97
            return
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;

  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.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 101
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.disposables:Lio/reactivex/internal/disposables/SequentialDisposable;
            aload 1 /* d */
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.replace:(Lio/reactivex/disposables/Disposable;)Z
            pop
         1: .line 102
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;
            0    2     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.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
        start local 1 // java.lang.Object value
         0: .line 106
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.current:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* value */
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         1: .line 107
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.drain:()V
         2: .line 108
            return
        end local 1 // java.lang.Object value
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<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.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
        start local 1 // java.lang.Throwable e
         0: .line 112
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         1: .line 113
            return
        end local 1 // java.lang.Throwable e
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;
            0    2     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
         0: .line 117
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.current:Ljava/util/concurrent/atomic/AtomicReference;
            getstatic io.reactivex.internal.util.NotificationLite.COMPLETE:Lio/reactivex/internal/util/NotificationLite;
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         1: .line 118
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.drain:()V
         2: .line 119
            return
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=1
        start local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
         0: .line 123
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.getAndIncrement:()I
            ifeq 2
         1: .line 124
            return
         2: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.current:Ljava/util/concurrent/atomic/AtomicReference;
            astore 1 /* c */
        start local 1 // java.util.concurrent.atomic.AtomicReference c
         3: .line 128
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.downstream:Lorg/reactivestreams/Subscriber;
            astore 2 /* a */
        start local 2 // org.reactivestreams.Subscriber a
         4: .line 129
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.disposables:Lio/reactivex/internal/disposables/SequentialDisposable;
            astore 3 /* cancelled */
        start local 3 // io.reactivex.disposables.Disposable cancelled
         5: .line 132
      StackMap locals: java.util.concurrent.atomic.AtomicReference org.reactivestreams.Subscriber io.reactivex.disposables.Disposable
      StackMap stack:
            aload 3 /* cancelled */
            invokeinterface io.reactivex.disposables.Disposable.isDisposed:()Z
            ifeq 8
         6: .line 133
            aload 1 /* c */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         7: .line 134
            return
         8: .line 137
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            astore 4 /* o */
        start local 4 // java.lang.Object o
         9: .line 139
            aload 4 /* o */
            ifnull 39
        10: .line 141
            aload 4 /* o */
            getstatic io.reactivex.internal.util.NotificationLite.COMPLETE:Lio/reactivex/internal/util/NotificationLite;
            if_acmpeq 20
        11: .line 142
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.produced:J
            lstore 6 /* p */
        start local 6 // long p
        12: .line 143
            lload 6 /* p */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lcmp
            ifeq 18
        13: .line 144
            aload 0 /* this */
            lload 6 /* p */
            lconst_1
            ladd
            putfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.produced:J
        14: .line 145
            aload 1 /* c */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        15: .line 146
            iconst_1
            istore 5 /* goNextSource */
        start local 5 // boolean goNextSource
        16: .line 148
            aload 2 /* a */
            aload 4 /* o */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        17: .line 149
            goto 22
        end local 5 // boolean goNextSource
        18: .line 150
      StackMap locals: io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver java.util.concurrent.atomic.AtomicReference org.reactivestreams.Subscriber io.reactivex.disposables.Disposable java.lang.Object top long
      StackMap stack:
            iconst_0
            istore 5 /* goNextSource */
        end local 6 // long p
        start local 5 // boolean goNextSource
        19: .line 152
            goto 22
        end local 5 // boolean goNextSource
        20: .line 153
      StackMap locals: io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver java.util.concurrent.atomic.AtomicReference org.reactivestreams.Subscriber io.reactivex.disposables.Disposable java.lang.Object
      StackMap stack:
            iconst_1
            istore 5 /* goNextSource */
        start local 5 // boolean goNextSource
        21: .line 154
            aload 1 /* c */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        22: .line 157
      StackMap locals: int
      StackMap stack:
            iload 5 /* goNextSource */
            ifeq 39
            aload 3 /* cancelled */
            invokeinterface io.reactivex.disposables.Disposable.isDisposed:()Z
            ifne 39
        23: .line 161
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.sources:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            istore 6 /* b */
        start local 6 // boolean b
        24: .line 162
            goto 29
        end local 6 // boolean b
      StackMap locals:
      StackMap stack: java.lang.Throwable
        25: astore 7 /* ex */
        start local 7 // java.lang.Throwable ex
        26: .line 163
            aload 7 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        27: .line 164
            aload 2 /* a */
            aload 7 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        28: .line 165
            return
        end local 7 // java.lang.Throwable ex
        start local 6 // boolean b
        29: .line 168
      StackMap locals: int
      StackMap stack:
            iload 6 /* b */
            ifeq 38
        30: .line 172
            aload 0 /* this */
            getfield io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.sources:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.reactivex.MaybeSource
            ldc "The source Iterator returned a null MaybeSource"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.reactivex.MaybeSource
            astore 7 /* source */
        start local 7 // io.reactivex.MaybeSource source
        31: .line 173
            goto 36
        end local 7 // io.reactivex.MaybeSource source
      StackMap locals:
      StackMap stack: java.lang.Throwable
        32: astore 8 /* ex */
        start local 8 // java.lang.Throwable ex
        33: .line 174
            aload 8 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        34: .line 175
            aload 2 /* a */
            aload 8 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        35: .line 176
            return
        end local 8 // java.lang.Throwable ex
        start local 7 // io.reactivex.MaybeSource source
        36: .line 179
      StackMap locals: io.reactivex.MaybeSource
      StackMap stack:
            aload 7 /* source */
            aload 0 /* this */
            invokeinterface io.reactivex.MaybeSource.subscribe:(Lio/reactivex/MaybeObserver;)V
        end local 7 // io.reactivex.MaybeSource source
        37: .line 180
            goto 39
        38: .line 181
      StackMap locals:
      StackMap stack:
            aload 2 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        end local 6 // boolean b
        end local 5 // boolean goNextSource
        39: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver.decrementAndGet:()I
            ifne 5
        end local 4 // java.lang.Object o
        40: .line 190
            return
        end local 3 // io.reactivex.disposables.Disposable cancelled
        end local 2 // org.reactivestreams.Subscriber a
        end local 1 // java.util.concurrent.atomic.AtomicReference c
        end local 0 // io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   41     0          this  Lio/reactivex/internal/operators/maybe/MaybeConcatIterable$ConcatMaybeObserver<TT;>;
            3   41     1             c  Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Object;>;
            4   41     2             a  Lorg/reactivestreams/Subscriber<-TT;>;
            5   41     3     cancelled  Lio/reactivex/disposables/Disposable;
            9   40     4             o  Ljava/lang/Object;
           16   18     5  goNextSource  Z
           19   20     5  goNextSource  Z
           21   39     5  goNextSource  Z
           12   19     6             p  J
           24   25     6             b  Z
           29   39     6             b  Z
           26   29     7            ex  Ljava/lang/Throwable;
           31   32     7        source  Lio/reactivex/MaybeSource<+TT;>;
           36   37     7        source  Lio/reactivex/MaybeSource<+TT;>;
           33   36     8            ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          23    24      25  Class java.lang.Throwable
          30    31      32  Class java.lang.Throwable
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/MaybeObserver<TT;>;Lorg/reactivestreams/Subscription;
SourceFile: "MaybeConcatIterable.java"
NestHost: io.reactivex.internal.operators.maybe.MaybeConcatIterable
InnerClasses:
  final ConcatMaybeObserver = io.reactivex.internal.operators.maybe.MaybeConcatIterable$ConcatMaybeObserver of io.reactivex.internal.operators.maybe.MaybeConcatIterable