final class io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver<T> 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.ObservableOnErrorNext$OnErrorNextObserver
  super_class: java.lang.Object
{
  final io.reactivex.Observer<? super T> downstream;
    descriptor: Lio/reactivex/Observer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Observer<-TT;>;

  final io.reactivex.functions.Function<? super java.lang.Throwable, ? extends io.reactivex.ObservableSource<? extends T>> nextSupplier;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-Ljava/lang/Throwable;+Lio/reactivex/ObservableSource<+TT;>;>;

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

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

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

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

  void <init>(io.reactivex.Observer<? super T>, io.reactivex.functions.Function<? super java.lang.Throwable, ? extends io.reactivex.ObservableSource<? extends T>>, );
    descriptor: (Lio/reactivex/Observer;Lio/reactivex/functions/Function;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
        start local 1 // io.reactivex.Observer actual
        start local 2 // io.reactivex.functions.Function nextSupplier
        start local 3 // boolean allowFatal
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
         2: .line 53
            aload 0 /* this */
            aload 2 /* nextSupplier */
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.nextSupplier:Lio/reactivex/functions/Function;
         3: .line 54
            aload 0 /* this */
            iload 3 /* allowFatal */
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.allowFatal:Z
         4: .line 55
            aload 0 /* this */
            new io.reactivex.internal.disposables.SequentialDisposable
            dup
            invokespecial io.reactivex.internal.disposables.SequentialDisposable.<init>:()V
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.arbiter:Lio/reactivex/internal/disposables/SequentialDisposable;
         5: .line 56
            return
        end local 3 // boolean allowFatal
        end local 2 // io.reactivex.functions.Function nextSupplier
        end local 1 // io.reactivex.Observer actual
        end local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/reactivex/internal/operators/observable/ObservableOnErrorNext$OnErrorNextObserver<TT;>;
            0    6     1        actual  Lio/reactivex/Observer<-TT;>;
            0    6     2  nextSupplier  Lio/reactivex/functions/Function<-Ljava/lang/Throwable;+Lio/reactivex/ObservableSource<+TT;>;>;
            0    6     3    allowFatal  Z
    Signature: (Lio/reactivex/Observer<-TT;>;Lio/reactivex/functions/Function<-Ljava/lang/Throwable;+Lio/reactivex/ObservableSource<+TT;>;>;Z)V
    MethodParameters:
              Name  Flags
      actual        
      nextSupplier  
      allowFatal    

  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.ObservableOnErrorNext$OnErrorNextObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 60
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.arbiter:Lio/reactivex/internal/disposables/SequentialDisposable;
            aload 1 /* d */
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.replace:(Lio/reactivex/disposables/Disposable;)Z
            pop
         1: .line 61
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableOnErrorNext$OnErrorNextObserver<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.ObservableOnErrorNext$OnErrorNextObserver this
        start local 1 // java.lang.Object t
         0: .line 65
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.done:Z
            ifeq 2
         1: .line 66
            return
         2: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
         3: .line 69
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/observable/ObservableOnErrorNext$OnErrorNextObserver<TT;>;
            0    4     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=7, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
        start local 1 // java.lang.Throwable t
         0: .line 73
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.once:Z
            ifeq 6
         1: .line 74
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.done:Z
            ifeq 4
         2: .line 75
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         3: .line 76
            return
         4: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         5: .line 79
            return
         6: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.once:Z
         7: .line 83
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.allowFatal:Z
            ifeq 10
            aload 1 /* t */
            instanceof java.lang.Exception
            ifne 10
         8: .line 84
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         9: .line 85
            return
        10: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.nextSupplier:Lio/reactivex/functions/Function;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.reactivex.ObservableSource
            astore 2 /* p */
        start local 2 // io.reactivex.ObservableSource p
        11: .line 92
            goto 16
        end local 2 // io.reactivex.ObservableSource p
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: astore 3 /* e */
        start local 3 // java.lang.Throwable e
        13: .line 93
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        14: .line 94
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 3 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
        15: .line 95
            return
        end local 3 // java.lang.Throwable e
        start local 2 // io.reactivex.ObservableSource p
        16: .line 98
      StackMap locals: io.reactivex.ObservableSource
      StackMap stack:
            aload 2 /* p */
            ifnonnull 21
        17: .line 99
            new java.lang.NullPointerException
            dup
            ldc "Observable is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 3 /* npe */
        start local 3 // java.lang.NullPointerException npe
        18: .line 100
            aload 3 /* npe */
            aload 1 /* t */
            invokevirtual java.lang.NullPointerException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        19: .line 101
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            aload 3 /* npe */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
        20: .line 102
            return
        end local 3 // java.lang.NullPointerException npe
        21: .line 105
      StackMap locals:
      StackMap stack:
            aload 2 /* p */
            aload 0 /* this */
            invokeinterface io.reactivex.ObservableSource.subscribe:(Lio/reactivex/Observer;)V
        22: .line 106
            return
        end local 2 // io.reactivex.ObservableSource p
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lio/reactivex/internal/operators/observable/ObservableOnErrorNext$OnErrorNextObserver<TT;>;
            0   23     1     t  Ljava/lang/Throwable;
           11   12     2     p  Lio/reactivex/ObservableSource<+TT;>;
           16   23     2     p  Lio/reactivex/ObservableSource<+TT;>;
           13   16     3     e  Ljava/lang/Throwable;
           18   21     3   npe  Ljava/lang/NullPointerException;
      Exception table:
        from    to  target  type
          10    11      12  Class java.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.observable.ObservableOnErrorNext$OnErrorNextObserver this
         0: .line 110
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.done:Z
            ifeq 2
         1: .line 111
            return
         2: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.done:Z
         3: .line 114
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.once:Z
         4: .line 115
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver.downstream:Lio/reactivex/Observer;
            invokeinterface io.reactivex.Observer.onComplete:()V
         5: .line 116
            return
        end local 0 // io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/observable/ObservableOnErrorNext$OnErrorNextObserver<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/reactivex/Observer<TT;>;
SourceFile: "ObservableOnErrorNext.java"
NestHost: io.reactivex.internal.operators.observable.ObservableOnErrorNext
InnerClasses:
  final OnErrorNextObserver = io.reactivex.internal.operators.observable.ObservableOnErrorNext$OnErrorNextObserver of io.reactivex.internal.operators.observable.ObservableOnErrorNext