public final class io.reactivex.internal.subscribers.LambdaSubscriber<T> extends java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscription> implements io.reactivex.FlowableSubscriber<T>, org.reactivestreams.Subscription, 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.subscribers.LambdaSubscriber
  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 org.reactivestreams.Subscription> onSubscribe;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Consumer<-Lorg/reactivestreams/Subscription;>;

  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 org.reactivestreams.Subscription>);
    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.subscribers.LambdaSubscriber 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 41
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* onNext */
            putfield io.reactivex.internal.subscribers.LambdaSubscriber.onNext:Lio/reactivex/functions/Consumer;
         2: .line 43
            aload 0 /* this */
            aload 2 /* onError */
            putfield io.reactivex.internal.subscribers.LambdaSubscriber.onError:Lio/reactivex/functions/Consumer;
         3: .line 44
            aload 0 /* this */
            aload 3 /* onComplete */
            putfield io.reactivex.internal.subscribers.LambdaSubscriber.onComplete:Lio/reactivex/functions/Action;
         4: .line 45
            aload 0 /* this */
            aload 4 /* onSubscribe */
            putfield io.reactivex.internal.subscribers.LambdaSubscriber.onSubscribe:Lio/reactivex/functions/Consumer;
         5: .line 46
            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.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/reactivex/internal/subscribers/LambdaSubscriber<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<-Lorg/reactivestreams/Subscription;>;
    Signature: (Lio/reactivex/functions/Consumer<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;Lio/reactivex/functions/Consumer<-Lorg/reactivestreams/Subscription;>;)V
    MethodParameters:
             Name  Flags
      onNext       
      onError      
      onComplete   
      onSubscribe  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 50
            aload 0 /* this */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.setOnce:(Ljava/util/concurrent/atomic/AtomicReference;Lorg/reactivestreams/Subscription;)Z
            ifeq 7
         1: .line 52
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.LambdaSubscriber.onSubscribe:Lio/reactivex/functions/Consumer;
            aload 0 /* this */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         2: .line 53
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         4: .line 54
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 55
            aload 1 /* s */
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         6: .line 56
            aload 0 /* this */
            aload 2 /* ex */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable ex
         7: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;
            0    8     1     s  Lorg/reactivestreams/Subscription;
            4    7     2    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      s     

  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.subscribers.LambdaSubscriber this
        start local 1 // java.lang.Object t
         0: .line 63
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.isDisposed:()Z
            ifne 7
         1: .line 65
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.LambdaSubscriber.onNext:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         2: .line 66
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         4: .line 67
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 68
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.get:()Ljava/lang/Object;
            checkcast org.reactivestreams.Subscription
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         6: .line 69
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
         7: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<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.subscribers.LambdaSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 76
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            if_acmpeq 8
         1: .line 77
            aload 0 /* this */
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.lazySet:(Ljava/lang/Object;)V
         2: .line 79
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.LambdaSubscriber.onError:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         3: .line 80
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         5: .line 81
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 82
            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 84
            goto 9
         8: .line 85
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         9: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<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.subscribers.LambdaSubscriber this
         0: .line 91
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            if_acmpeq 7
         1: .line 92
            aload 0 /* this */
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.lazySet:(Ljava/lang/Object;)V
         2: .line 94
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.LambdaSubscriber.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         3: .line 95
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 1 /* e */
        start local 1 // java.lang.Throwable e
         5: .line 96
            aload 1 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 97
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable e
         7: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<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.subscribers.LambdaSubscriber this
         0: .line 104
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.cancel:()V
         1: .line 105
            return
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;

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

  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.subscribers.LambdaSubscriber this
        start local 1 // long n
         0: .line 114
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.LambdaSubscriber.get:()Ljava/lang/Object;
            checkcast org.reactivestreams.Subscription
            lload 1 /* n */
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         1: .line 115
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;
            0    2     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.subscribers.LambdaSubscriber this
         0: .line 119
            aload 0 /* this */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.cancel:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         1: .line 120
            return
        end local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;

  public boolean hasCustomOnError();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.LambdaSubscriber this
         0: .line 124
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.LambdaSubscriber.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.subscribers.LambdaSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/LambdaSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Lorg/reactivestreams/Subscription;>;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;Lio/reactivex/disposables/Disposable;Lio/reactivex/observers/LambdaConsumerIntrospection;
SourceFile: "LambdaSubscriber.java"