public final class io.reactivex.internal.operators.observable.ObservableRepeatWhen<T> extends io.reactivex.internal.operators.observable.AbstractObservableWithUpstream<T, T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.observable.ObservableRepeatWhen
  super_class: io.reactivex.internal.operators.observable.AbstractObservableWithUpstream
{
  final io.reactivex.functions.Function<? super io.reactivex.Observable<java.lang.Object>, ? extends io.reactivex.ObservableSource<?>> handler;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-Lio/reactivex/Observable<Ljava/lang/Object;>;+Lio/reactivex/ObservableSource<*>;>;

  public void <init>(io.reactivex.ObservableSource<T>, io.reactivex.functions.Function<? super io.reactivex.Observable<java.lang.Object>, ? extends io.reactivex.ObservableSource<?>>);
    descriptor: (Lio/reactivex/ObservableSource;Lio/reactivex/functions/Function;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.observable.ObservableRepeatWhen this
        start local 1 // io.reactivex.ObservableSource source
        start local 2 // io.reactivex.functions.Function handler
         0: .line 37
            aload 0 /* this */
            aload 1 /* source */
            invokespecial io.reactivex.internal.operators.observable.AbstractObservableWithUpstream.<init>:(Lio/reactivex/ObservableSource;)V
         1: .line 38
            aload 0 /* this */
            aload 2 /* handler */
            putfield io.reactivex.internal.operators.observable.ObservableRepeatWhen.handler:Lio/reactivex/functions/Function;
         2: .line 39
            return
        end local 2 // io.reactivex.functions.Function handler
        end local 1 // io.reactivex.ObservableSource source
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeatWhen this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/reactivex/internal/operators/observable/ObservableRepeatWhen<TT;>;
            0    3     1   source  Lio/reactivex/ObservableSource<TT;>;
            0    3     2  handler  Lio/reactivex/functions/Function<-Lio/reactivex/Observable<Ljava/lang/Object;>;+Lio/reactivex/ObservableSource<*>;>;
    Signature: (Lio/reactivex/ObservableSource<TT;>;Lio/reactivex/functions/Function<-Lio/reactivex/Observable<Ljava/lang/Object;>;+Lio/reactivex/ObservableSource<*>;>;)V
    MethodParameters:
         Name  Flags
      source   
      handler  

  protected void subscribeActual(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableRepeatWhen this
        start local 1 // io.reactivex.Observer observer
         0: .line 43
            invokestatic io.reactivex.subjects.PublishSubject.create:()Lio/reactivex/subjects/PublishSubject;
            invokevirtual io.reactivex.subjects.PublishSubject.toSerialized:()Lio/reactivex/subjects/Subject;
            astore 2 /* signaller */
        start local 2 // io.reactivex.subjects.Subject signaller
         1: .line 48
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeatWhen.handler:Lio/reactivex/functions/Function;
            aload 2 /* signaller */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.reactivex.ObservableSource
            ldc "The handler returned a null ObservableSource"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.reactivex.ObservableSource
            astore 3 /* other */
        start local 3 // io.reactivex.ObservableSource other
         2: .line 49
            goto 7
        end local 3 // io.reactivex.ObservableSource other
      StackMap locals: io.reactivex.internal.operators.observable.ObservableRepeatWhen io.reactivex.Observer io.reactivex.subjects.Subject
      StackMap stack: java.lang.Throwable
         3: astore 4 /* ex */
        start local 4 // java.lang.Throwable ex
         4: .line 50
            aload 4 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 51
            aload 4 /* ex */
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/Observer;)V
         6: .line 52
            return
        end local 4 // java.lang.Throwable ex
        start local 3 // io.reactivex.ObservableSource other
         7: .line 55
      StackMap locals: io.reactivex.ObservableSource
      StackMap stack:
            new io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver
            dup
            aload 1 /* observer */
            aload 2 /* signaller */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableRepeatWhen.source:Lio/reactivex/ObservableSource;
            invokespecial io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver.<init>:(Lio/reactivex/Observer;Lio/reactivex/subjects/Subject;Lio/reactivex/ObservableSource;)V
            astore 4 /* parent */
        start local 4 // io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver parent
         8: .line 56
            aload 1 /* observer */
            aload 4 /* parent */
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         9: .line 58
            aload 3 /* other */
            aload 4 /* parent */
            getfield io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver.inner:Lio/reactivex/internal/operators/observable/ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver;
            invokeinterface io.reactivex.ObservableSource.subscribe:(Lio/reactivex/Observer;)V
        10: .line 60
            aload 4 /* parent */
            invokevirtual io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver.subscribeNext:()V
        11: .line 61
            return
        end local 4 // io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver parent
        end local 3 // io.reactivex.ObservableSource other
        end local 2 // io.reactivex.subjects.Subject signaller
        end local 1 // io.reactivex.Observer observer
        end local 0 // io.reactivex.internal.operators.observable.ObservableRepeatWhen this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lio/reactivex/internal/operators/observable/ObservableRepeatWhen<TT;>;
            0   12     1   observer  Lio/reactivex/Observer<-TT;>;
            1   12     2  signaller  Lio/reactivex/subjects/Subject<Ljava/lang/Object;>;
            2    3     3      other  Lio/reactivex/ObservableSource<*>;
            7   12     3      other  Lio/reactivex/ObservableSource<*>;
            4    7     4         ex  Ljava/lang/Throwable;
            8   12     4     parent  Lio/reactivex/internal/operators/observable/ObservableRepeatWhen$RepeatWhenObserver<TT;>;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    MethodParameters:
          Name  Flags
      observer  
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/internal/operators/observable/AbstractObservableWithUpstream<TT;TT;>;
SourceFile: "ObservableRepeatWhen.java"
NestMembers:
  io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver  io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver
InnerClasses:
  final RepeatWhenObserver = io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver of io.reactivex.internal.operators.observable.ObservableRepeatWhen