final class io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver<T> extends java.util.concurrent.atomic.AtomicInteger implements io.reactivex.Observer<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7098360935104053232

  final io.reactivex.Observer<? super T> downstream;
    descriptor: Lio/reactivex/Observer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Observer<-TT;>;

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

  final io.reactivex.ObservableSource<? extends T> source;
    descriptor: Lio/reactivex/ObservableSource;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/ObservableSource<+TT;>;

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

  void <init>(io.reactivex.Observer<? super T>, long, io.reactivex.internal.disposables.SequentialDisposable, io.reactivex.ObservableSource<? extends T>);
    descriptor: (Lio/reactivex/Observer;JLio/reactivex/internal/disposables/SequentialDisposable;Lio/reactivex/ObservableSource;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
        start local 1 // io.reactivex.Observer actual
        start local 2 // long count
        start local 4 // io.reactivex.internal.disposables.SequentialDisposable sd
        start local 5 // io.reactivex.ObservableSource source
         0: .line 46
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.downstream:Lio/reactivex/Observer;
         2: .line 48
            aload 0 /* this */
            aload 4 /* sd */
            putfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.sd:Lio/reactivex/internal/disposables/SequentialDisposable;
         3: .line 49
            aload 0 /* this */
            aload 5 /* source */
            putfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.source:Lio/reactivex/ObservableSource;
         4: .line 50
            aload 0 /* this */
            lload 2 /* count */
            putfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.remaining:J
         5: .line 51
            return
        end local 5 // io.reactivex.ObservableSource source
        end local 4 // io.reactivex.internal.disposables.SequentialDisposable sd
        end local 2 // long count
        end local 1 // io.reactivex.Observer actual
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<TT;>;
            0    6     1  actual  Lio/reactivex/Observer<-TT;>;
            0    6     2   count  J
            0    6     4      sd  Lio/reactivex/internal/disposables/SequentialDisposable;
            0    6     5  source  Lio/reactivex/ObservableSource<+TT;>;
    Signature: (Lio/reactivex/Observer<-TT;>;JLio/reactivex/internal/disposables/SequentialDisposable;Lio/reactivex/ObservableSource<+TT;>;)V
    MethodParameters:
        Name  Flags
      actual  
      count   
      sd      
      source  

  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.observable.ObservableRepeat$RepeatObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 55
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.sd:Lio/reactivex/internal/disposables/SequentialDisposable;
            aload 1 /* d */
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.replace:(Lio/reactivex/disposables/Disposable;)Z
            pop
         1: .line 56
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<TT;>;
            0    2     1     d  Lio/reactivex/disposables/Disposable;
    MethodParameters:
      Name  Flags
      d     

  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.operators.observable.ObservableRepeat$RepeatObserver this
        start local 1 // java.lang.Object t
         0: .line 60
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
         1: .line 61
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<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.operators.observable.ObservableRepeat$RepeatObserver this
        start local 1 // java.lang.Throwable t
         0: .line 65
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         1: .line 66
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<TT;>;
            0    2     1     t  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
         0: .line 70
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.remaining:J
            lstore 1 /* r */
        start local 1 // long r
         1: .line 71
            lload 1 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 3
         2: .line 72
            aload 0 /* this */
            lload 1 /* r */
            lconst_1
            lsub
            putfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.remaining:J
         3: .line 74
      StackMap locals: long
      StackMap stack:
            lload 1 /* r */
            lconst_0
            lcmp
            ifeq 6
         4: .line 75
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.subscribeNext:()V
         5: .line 76
            goto 7
         6: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.downstream:Lio/reactivex/Observer;
            invokeinterface io.reactivex.Observer.onComplete:()V
         7: .line 79
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long r
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<TT;>;
            1    8     1     r  J

  void subscribeNext();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
         0: .line 85
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.getAndIncrement:()I
            ifne 7
         1: .line 86
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         2: .line 88
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.sd:Lio/reactivex/internal/disposables/SequentialDisposable;
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.isDisposed:()Z
            ifeq 4
         3: .line 89
            return
         4: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.source:Lio/reactivex/ObservableSource;
            aload 0 /* this */
            invokeinterface io.reactivex.ObservableSource.subscribe:(Lio/reactivex/Observer;)V
         5: .line 93
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver.addAndGet:(I)I
            istore 1 /* missed */
         6: .line 94
            iload 1 /* missed */
            ifne 2
        end local 1 // int missed
         7: .line 99
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/reactivex/internal/operators/observable/ObservableRepeat$RepeatObserver<TT;>;
            2    7     1  missed  I
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/Observer<TT;>;
SourceFile: "ObservableRepeat.java"
NestHost: io.reactivex.internal.operators.observable.ObservableRepeat
InnerClasses:
  final RepeatObserver = io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver of io.reactivex.internal.operators.observable.ObservableRepeat