final class io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber<T, R> implements io.reactivex.FlowableSubscriber<T>, org.reactivestreams.Subscription
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber
  super_class: java.lang.Object
{
  final org.reactivestreams.Subscriber<? super R> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TR;>;

  final io.reactivex.functions.Function<? super T, ? extends io.reactivex.Notification<R>> selector;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-TT;+Lio/reactivex/Notification<TR;>;>;

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

  org.reactivestreams.Subscription upstream;
    descriptor: Lorg/reactivestreams/Subscription;
    flags: (0x0000) 

  void <init>(org.reactivestreams.Subscriber<? super R>, io.reactivex.functions.Function<? super T, ? extends io.reactivex.Notification<R>>);
    descriptor: (Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/Function;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
        start local 1 // org.reactivestreams.Subscriber downstream
        start local 2 // io.reactivex.functions.Function selector
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            aload 1 /* downstream */
            putfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 51
            aload 0 /* this */
            aload 2 /* selector */
            putfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.selector:Lio/reactivex/functions/Function;
         3: .line 52
            return
        end local 2 // io.reactivex.functions.Function selector
        end local 1 // org.reactivestreams.Subscriber downstream
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
            0    4     1  downstream  Lorg/reactivestreams/Subscriber<-TR;>;
            0    4     2    selector  Lio/reactivex/functions/Function<-TT;+Lio/reactivex/Notification<TR;>;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TR;>;Lio/reactivex/functions/Function<-TT;+Lio/reactivex/Notification<TR;>;>;)V
    MethodParameters:
            Name  Flags
      downstream  
      selector    

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 56
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(Lorg/reactivestreams/Subscription;Lorg/reactivestreams/Subscription;)Z
            ifeq 3
         1: .line 57
            aload 0 /* this */
            aload 1 /* s */
            putfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 58
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 0 /* this */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         3: .line 60
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
            0    4     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
        start local 1 // java.lang.Object item
         0: .line 64
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.done:Z
            ifeq 6
         1: .line 65
            aload 1 /* item */
            instanceof io.reactivex.Notification
            ifeq 5
         2: .line 66
            aload 1 /* item */
            checkcast io.reactivex.Notification
            astore 2 /* notification */
        start local 2 // io.reactivex.Notification notification
         3: .line 67
            aload 2 /* notification */
            invokevirtual io.reactivex.Notification.isOnError:()Z
            ifeq 5
         4: .line 68
            aload 2 /* notification */
            invokevirtual io.reactivex.Notification.getError:()Ljava/lang/Throwable;
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // io.reactivex.Notification notification
         5: .line 71
      StackMap locals:
      StackMap stack:
            return
         6: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.selector:Lio/reactivex/functions/Function;
            aload 1 /* item */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.reactivex.Notification
            ldc "The selector returned a null Notification"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.reactivex.Notification
            astore 2 /* notification */
        start local 2 // io.reactivex.Notification notification
         7: .line 78
            goto 13
        end local 2 // io.reactivex.Notification notification
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
         9: .line 79
            aload 3 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 80
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
        11: .line 81
            aload 0 /* this */
            aload 3 /* ex */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.onError:(Ljava/lang/Throwable;)V
        12: .line 82
            return
        end local 3 // java.lang.Throwable ex
        start local 2 // io.reactivex.Notification notification
        13: .line 84
      StackMap locals: io.reactivex.Notification
      StackMap stack:
            aload 2 /* notification */
            invokevirtual io.reactivex.Notification.isOnError:()Z
            ifeq 17
        14: .line 85
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
        15: .line 86
            aload 0 /* this */
            aload 2 /* notification */
            invokevirtual io.reactivex.Notification.getError:()Ljava/lang/Throwable;
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.onError:(Ljava/lang/Throwable;)V
        16: .line 87
            goto 22
      StackMap locals:
      StackMap stack:
        17: aload 2 /* notification */
            invokevirtual io.reactivex.Notification.isOnComplete:()Z
            ifeq 21
        18: .line 88
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
        19: .line 89
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.onComplete:()V
        20: .line 90
            goto 22
        21: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 2 /* notification */
            invokevirtual io.reactivex.Notification.getValue:()Ljava/lang/Object;
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        22: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.reactivex.Notification notification
        end local 1 // java.lang.Object item
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   23     0          this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
            0   23     1          item  TT;
            3    5     2  notification  Lio/reactivex/Notification<*>;
            7    8     2  notification  Lio/reactivex/Notification<TR;>;
           13   23     2  notification  Lio/reactivex/Notification<TR;>;
            9   13     3            ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.Throwable
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      item  

  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.flowable.FlowableDematerialize$DematerializeSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 97
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.done:Z
            ifeq 3
         1: .line 98
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 99
            return
         3: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.done:Z
         4: .line 103
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         5: .line 104
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
            0    6     1     t  Ljava/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.flowable.FlowableDematerialize$DematerializeSubscriber this
         0: .line 108
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.done:Z
            ifeq 2
         1: .line 109
            return
         2: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.done:Z
         3: .line 113
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         4: .line 114
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;

  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.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
        start local 1 // long n
         0: .line 118
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            lload 1 /* n */
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         1: .line 119
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
            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.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
         0: .line 123
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         1: .line 124
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableDematerialize$DematerializeSubscriber<TT;TR;>;
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Ljava/lang/Object;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;
SourceFile: "FlowableDematerialize.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableDematerialize
InnerClasses:
  final DematerializeSubscriber = io.reactivex.internal.operators.flowable.FlowableDematerialize$DematerializeSubscriber of io.reactivex.internal.operators.flowable.FlowableDematerialize