public final class io.reactivex.internal.observers.LambdaObserver<T> extends java.util.concurrent.atomic.AtomicReference<io.reactivex.disposables.Disposable> implements io.reactivex.Observer<T>, io.reactivex.disposables.Disposable, io.reactivex.observers.LambdaConsumerIntrospection
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.observers.LambdaObserver
  super_class: java.util.concurrent.atomic.AtomicReference
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7251123623727029452

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

  final io.reactivex.functions.Consumer<? super java.lang.Throwable> onError;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;

  final io.reactivex.functions.Action onComplete;
    descriptor: Lio/reactivex/functions/Action;
    flags: (0x0010) ACC_FINAL

  final io.reactivex.functions.Consumer<? super io.reactivex.disposables.Disposable> onSubscribe;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Consumer<-Lio/reactivex/disposables/Disposable;>;

  public void <init>(io.reactivex.functions.Consumer<? super T>, io.reactivex.functions.Consumer<? super java.lang.Throwable>, io.reactivex.functions.Action, io.reactivex.functions.Consumer<? super io.reactivex.disposables.Disposable>);
    descriptor: (Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
        start local 1 // io.reactivex.functions.Consumer onNext
        start local 2 // io.reactivex.functions.Consumer onError
        start local 3 // io.reactivex.functions.Action onComplete
        start local 4 // io.reactivex.functions.Consumer onSubscribe
         0: .line 39
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* onNext */
            putfield io.reactivex.internal.observers.LambdaObserver.onNext:Lio/reactivex/functions/Consumer;
         2: .line 41
            aload 0 /* this */
            aload 2 /* onError */
            putfield io.reactivex.internal.observers.LambdaObserver.onError:Lio/reactivex/functions/Consumer;
         3: .line 42
            aload 0 /* this */
            aload 3 /* onComplete */
            putfield io.reactivex.internal.observers.LambdaObserver.onComplete:Lio/reactivex/functions/Action;
         4: .line 43
            aload 0 /* this */
            aload 4 /* onSubscribe */
            putfield io.reactivex.internal.observers.LambdaObserver.onSubscribe:Lio/reactivex/functions/Consumer;
         5: .line 44
            return
        end local 4 // io.reactivex.functions.Consumer onSubscribe
        end local 3 // io.reactivex.functions.Action onComplete
        end local 2 // io.reactivex.functions.Consumer onError
        end local 1 // io.reactivex.functions.Consumer onNext
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
            0    6     1       onNext  Lio/reactivex/functions/Consumer<-TT;>;
            0    6     2      onError  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
            0    6     3   onComplete  Lio/reactivex/functions/Action;
            0    6     4  onSubscribe  Lio/reactivex/functions/Consumer<-Lio/reactivex/disposables/Disposable;>;
    Signature: (Lio/reactivex/functions/Consumer<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer<-Lio/reactivex/disposables/Disposable;>;)V
    MethodParameters:
             Name  Flags
      onNext       
      onError      
      onComplete   
      onSubscribe  

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 48
            aload 0 /* this */
            aload 1 /* d */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.setOnce:(Ljava/util/concurrent/atomic/AtomicReference;Lio/reactivex/disposables/Disposable;)Z
            ifeq 7
         1: .line 50
            aload 0 /* this */
            getfield io.reactivex.internal.observers.LambdaObserver.onSubscribe:Lio/reactivex/functions/Consumer;
            aload 0 /* this */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         2: .line 51
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         4: .line 52
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 53
            aload 1 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         6: .line 54
            aload 0 /* this */
            aload 2 /* ex */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable ex
         7: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
            0    8     1     d  Lio/reactivex/disposables/Disposable;
            4    7     2    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      d     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
        start local 1 // java.lang.Object t
         0: .line 61
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.isDisposed:()Z
            ifne 7
         1: .line 63
            aload 0 /* this */
            getfield io.reactivex.internal.observers.LambdaObserver.onNext:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         2: .line 64
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         4: .line 65
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 66
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.get:()Ljava/lang/Object;
            checkcast io.reactivex.disposables.Disposable
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         6: .line 67
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
         7: .line 70
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
            0    8     1     t  TT;
            4    7     2     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
        start local 1 // java.lang.Throwable t
         0: .line 74
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.isDisposed:()Z
            ifne 8
         1: .line 75
            aload 0 /* this */
            getstatic io.reactivex.internal.disposables.DisposableHelper.DISPOSED:Lio/reactivex/internal/disposables/DisposableHelper;
            invokevirtual io.reactivex.internal.observers.LambdaObserver.lazySet:(Ljava/lang/Object;)V
         2: .line 77
            aload 0 /* this */
            getfield io.reactivex.internal.observers.LambdaObserver.onError:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         3: .line 78
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         5: .line 79
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 80
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
         7: .line 82
            goto 9
         8: .line 83
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         9: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
            0   10     1     t  Ljava/lang/Throwable;
            5    7     2     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
         0: .line 89
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.isDisposed:()Z
            ifne 7
         1: .line 90
            aload 0 /* this */
            getstatic io.reactivex.internal.disposables.DisposableHelper.DISPOSED:Lio/reactivex/internal/disposables/DisposableHelper;
            invokevirtual io.reactivex.internal.observers.LambdaObserver.lazySet:(Ljava/lang/Object;)V
         2: .line 92
            aload 0 /* this */
            getfield io.reactivex.internal.observers.LambdaObserver.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         3: .line 93
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 1 /* e */
        start local 1 // java.lang.Throwable e
         5: .line 94
            aload 1 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 95
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable e
         7: .line 98
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
            5    7     1     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
         0: .line 102
            aload 0 /* this */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         1: .line 103
            return
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
         0: .line 107
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.LambdaObserver.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.disposables.DisposableHelper.DISPOSED:Lio/reactivex/internal/disposables/DisposableHelper;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;

  public boolean hasCustomOnError();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.LambdaObserver this
         0: .line 112
            aload 0 /* this */
            getfield io.reactivex.internal.observers.LambdaObserver.onError:Lio/reactivex/functions/Consumer;
            getstatic io.reactivex.internal.functions.Functions.ON_ERROR_MISSING:Lio/reactivex/functions/Consumer;
            if_acmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.observers.LambdaObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/LambdaObserver<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/disposables/Disposable;>;Lio/reactivex/Observer<TT;>;Lio/reactivex/disposables/Disposable;Lio/reactivex/observers/LambdaConsumerIntrospection;
SourceFile: "LambdaObserver.java"