final class io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber<T> extends io.reactivex.internal.subscribers.BasicFuseableSubscriber<T, T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber
  super_class: io.reactivex.internal.subscribers.BasicFuseableSubscriber
{
  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.Action onAfterTerminate;
    descriptor: Lio/reactivex/functions/Action;
    flags: (0x0010) ACC_FINAL

  void <init>(org.reactivestreams.Subscriber<? super T>, io.reactivex.functions.Consumer<? super T>, io.reactivex.functions.Consumer<? super java.lang.Throwable>, io.reactivex.functions.Action, io.reactivex.functions.Action);
    descriptor: (Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;Lio/reactivex/functions/Action;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // io.reactivex.functions.Consumer onNext
        start local 3 // io.reactivex.functions.Consumer onError
        start local 4 // io.reactivex.functions.Action onComplete
        start local 5 // io.reactivex.functions.Action onAfterTerminate
         0: .line 67
            aload 0 /* this */
            aload 1 /* actual */
            invokespecial io.reactivex.internal.subscribers.BasicFuseableSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
         1: .line 68
            aload 0 /* this */
            aload 2 /* onNext */
            putfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onNext:Lio/reactivex/functions/Consumer;
         2: .line 69
            aload 0 /* this */
            aload 3 /* onError */
            putfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onError:Lio/reactivex/functions/Consumer;
         3: .line 70
            aload 0 /* this */
            aload 4 /* onComplete */
            putfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onComplete:Lio/reactivex/functions/Action;
         4: .line 71
            aload 0 /* this */
            aload 5 /* onAfterTerminate */
            putfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
         5: .line 72
            return
        end local 5 // io.reactivex.functions.Action onAfterTerminate
        end local 4 // io.reactivex.functions.Action onComplete
        end local 3 // io.reactivex.functions.Consumer onError
        end local 2 // io.reactivex.functions.Consumer onNext
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            0    6     1            actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    6     2            onNext  Lio/reactivex/functions/Consumer<-TT;>;
            0    6     3           onError  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
            0    6     4        onComplete  Lio/reactivex/functions/Action;
            0    6     5  onAfterTerminate  Lio/reactivex/functions/Action;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;Lio/reactivex/functions/Consumer<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;Lio/reactivex/functions/Action;)V
    MethodParameters:
                  Name  Flags
      actual            
      onNext            
      onError           
      onComplete        
      onAfterTerminate  

  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.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
        start local 1 // java.lang.Object t
         0: .line 76
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.done:Z
            ifeq 2
         1: .line 77
            return
         2: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.sourceMode:I
            ifeq 5
         3: .line 81
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aconst_null
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
         4: .line 82
            return
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onNext:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         6: .line 87
            goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         8: .line 88
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.fail:(Ljava/lang/Throwable;)V
         9: .line 89
            return
        end local 2 // java.lang.Throwable e
        10: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        11: .line 93
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            0   12     1     t  TT;
            8   10     2     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           5     6       7  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=7, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 97
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.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.FlowableDoOnEach$DoOnEachSubscriber.done:Z
         4: .line 102
            iconst_1
            istore 2 /* relay */
        start local 2 // boolean relay
         5: .line 104
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onError:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         6: .line 105
            goto 11
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber java.lang.Throwable int
      StackMap stack: java.lang.Throwable
         7: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         8: .line 106
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         9: .line 107
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            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 org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        10: .line 108
            iconst_0
            istore 2 /* relay */
        end local 3 // java.lang.Throwable e
        11: .line 110
      StackMap locals:
      StackMap stack:
            iload 2 /* relay */
            ifeq 13
        12: .line 111
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        13: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        14: .line 116
            goto 18
      StackMap locals:
      StackMap stack: java.lang.Throwable
        15: astore 3 /* e */
        start local 3 // java.lang.Throwable e
        16: .line 117
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        17: .line 118
            aload 3 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable e
        18: .line 120
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean relay
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            0   19     1      t  Ljava/lang/Throwable;
            5   19     2  relay  Z
            8   11     3      e  Ljava/lang/Throwable;
           16   18     3      e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           5     6       7  Class java.lang.Throwable
          13    14      15  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.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
         0: .line 124
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.done:Z
            ifeq 2
         1: .line 125
            return
         2: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         3: .line 129
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 1 /* e */
        start local 1 // java.lang.Throwable e
         5: .line 130
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.fail:(Ljava/lang/Throwable;)V
         6: .line 131
            return
        end local 1 // java.lang.Throwable e
         7: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.done:Z
         8: .line 135
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         9: .line 138
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        10: .line 139
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 1 /* e */
        start local 1 // java.lang.Throwable e
        12: .line 140
            aload 1 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        13: .line 141
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable e
        14: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            5    7     1     e  Ljava/lang/Throwable;
           12   14     1     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
           9    10      11  Class java.lang.Throwable

  public int requestFusion(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
        start local 1 // int mode
         0: .line 147
            aload 0 /* this */
            iload 1 /* mode */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.transitiveBoundaryFusion:(I)I
            ireturn
        end local 1 // int mode
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            0    1     1  mode  I
    MethodParameters:
      Name  Flags
      mode  

  public T poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
         0: .line 156
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.poll:()Ljava/lang/Object;
            astore 1 /* v */
        start local 1 // java.lang.Object v
         1: .line 157
            goto 9
        end local 1 // java.lang.Object v
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         3: .line 158
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 160
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onError:Lio/reactivex/functions/Consumer;
            aload 2 /* ex */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         5: .line 161
            goto 8
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber top java.lang.Throwable
      StackMap stack: java.lang.Throwable
         6: astore 3 /* exc */
        start local 3 // java.lang.Throwable exc
         7: .line 162
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* ex */
            aastore
            dup
            iconst_1
            aload 3 /* exc */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.Throwable exc
         8: .line 164
      StackMap locals:
      StackMap stack:
            aload 2 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.throwIfThrowable:(Ljava/lang/Throwable;)Ljava/lang/Exception;
            athrow
        end local 2 // java.lang.Throwable ex
        start local 1 // java.lang.Object v
         9: .line 167
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber java.lang.Object
      StackMap stack:
            aload 1 /* v */
            ifnull 24
        10: .line 170
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onNext:Lio/reactivex/functions/Consumer;
            aload 1 /* v */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        11: .line 171
            goto 22
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
        13: .line 172
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        14: .line 174
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onError:Lio/reactivex/functions/Consumer;
            aload 2 /* ex */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        15: .line 175
            goto 18
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber java.lang.Object java.lang.Throwable
      StackMap stack: java.lang.Throwable
        16: astore 3 /* exc */
        start local 3 // java.lang.Throwable exc
        17: .line 176
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* ex */
            aastore
            dup
            iconst_1
            aload 3 /* exc */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.Throwable exc
        18: .line 178
      StackMap locals:
      StackMap stack:
            aload 2 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.throwIfThrowable:(Ljava/lang/Throwable;)Ljava/lang/Exception;
            athrow
        end local 2 // java.lang.Throwable ex
        19: .line 180
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber java.lang.Object
      StackMap stack: java.lang.Throwable
            astore 4
        20: .line 181
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        21: .line 182
            aload 4
            athrow
        22: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        23: .line 183
            goto 27
        24: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.sourceMode:I
            iconst_1
            if_icmpne 27
        25: .line 185
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        26: .line 187
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber.onAfterTerminate:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
        27: .line 190
      StackMap locals:
      StackMap stack:
            aload 1 /* v */
            areturn
        end local 1 // java.lang.Object v
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   28     0  this  Lio/reactivex/internal/operators/flowable/FlowableDoOnEach$DoOnEachSubscriber<TT;>;
            1    2     1     v  TT;
            9   28     1     v  TT;
            3    9     2    ex  Ljava/lang/Throwable;
            7    8     3   exc  Ljava/lang/Throwable;
           13   19     2    ex  Ljava/lang/Throwable;
           17   18     3   exc  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
           4     5       6  Class java.lang.Throwable
          10    11      12  Class java.lang.Throwable
          14    15      16  Class java.lang.Throwable
          10    19      19  any
    Exceptions:
      throws java.lang.Exception
    Signature: ()TT;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/internal/subscribers/BasicFuseableSubscriber<TT;TT;>;
SourceFile: "FlowableDoOnEach.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableDoOnEach
InnerClasses:
  final DoOnEachSubscriber = io.reactivex.internal.operators.flowable.FlowableDoOnEach$DoOnEachSubscriber of io.reactivex.internal.operators.flowable.FlowableDoOnEach